summaryrefslogtreecommitdiff
path: root/test/files/run/t9920b.scala
blob: fab196b66972ea8813dd100a9ccc7b70d51a50a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class C0
trait T {
  def test = {
    object Local

    class C1 {
      Local
    }
    new C1()
  }
}

object Test extends C0 with T {
  def main(args: Array[String]): Unit = {
    test
  }
}