summaryrefslogtreecommitdiff
path: root/test/files/run/t4119/S.scala
blob: d6ae5f1b8726559d801956cce9b3baf29d1a8f0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class S extends foo.bar.J {
  sss =>

  val fn = () => {
    foo(S.this)
  }
  fn()
}

object Test {
  def main(args: Array[String]): Unit = {
    new S
  }
}