summaryrefslogblamecommitdiff
path: root/test/files/pos/bug1050.scala
blob: 1dfa20c9882b17230ca6fac293a9d8b4e4db6973 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                             
                      




             
package bug1050

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