aboutsummaryrefslogblamecommitdiff
path: root/tests/pos/t3274.scala
blob: bd8b080c9a5cef2786ee429b76605bc54c54db53 (plain) (tree)
1
2
3
4
5
6
7
8
9








                              
trait A { this: B =>
  trait X {
    class Y1 extends Y
  }
}

trait B extends A {
  trait Y { def f: Unit = {} }
}