aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1050.scala
blob: d34b0cff1687d97420e01feec71b4e6abbb6b9fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package t1050

abstract class A {
  type T <: scala.AnyRef
  class A { this: T =>
    def b = 3
    def c = b
    b
  }
}