summaryrefslogblamecommitdiff
path: root/test/files/pos/t6552.scala
blob: 98e686a1aefc2b9a2fefe0e14f827e1b8337dee0 (plain) (tree)
1
2
3
4
5
6
7
8







                               
object Repros {
  class Bar {}
  class Baz(val myFoo: Foo) { }
  trait Foo {
    this: Bar =>
    val thing = new Baz(this)
  }
}