aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t0055.scala
blob: 0796294403a3e02ae5144795f177ea7bb5f3a006 (plain) (tree)
1
2
3
4
5
6





                                            
class X(x : Any)
class W {
  new X(new Z() with Y) {}
  trait Y { def y = () }
}
class Z(r : Any) { def this() = this(null) }