summaryrefslogtreecommitdiff
path: root/test/files/pos/t3274.scala
blob: 15723184bb69a601ba91c754970c8413e531d52a (plain) (blame)
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 {} }
}