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










                                  
 
package test

trait A
trait B

class BImpl extends B {
  this: A =>
}

object Test2 extends Application {
  val b = new BImpl
}