aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1049.scala
blob: 61d99f946cbf28a4d976ae4a06596f87259bbf74 (plain) (blame)
1
2
3
4
5
6
7
package t1049

abstract class Test {
  type T <: A
  class A { self: T => }
  class B extends A { self: T => }
}