summaryrefslogtreecommitdiff
path: root/test/files/pos/t3274.scala
blob: dfa6a4ec012cb5f5f236b97a05485825772cbbb1 (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 {} }
}