summaryrefslogblamecommitdiff
path: root/test/files/pos/t4524.scala
blob: 4721a7d067733199ad5f51137d26226fa20fda7b (plain) (tree)
1
2
3
4
5
6
7
8
9








                           
object test {
  import A._
  class A(b: B = new A.B())
  object A {
    class B
    new A()
  }
}