summaryrefslogblamecommitdiff
path: root/test/files/neg/bug1623.scala
blob: d98670a68141103dc07525f5778fbf0f576643e6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                  
package test

trait A
trait B

class BImpl extends B {
  this: A =>
}

object Test2 extends Application {
  val b = new BImpl
}