summaryrefslogtreecommitdiff
path: root/test/pending/pos/t1107/Trait.scala
blob: cd213f9780a7861a97665e8244624bf8f9bf1af9 (plain) (blame)
1
2
3
4
5
6
7
8
9
sealed trait Top
sealed trait Sub extends Top

trait C
{
   private object P extends Sub
}