aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t4072.scala
blob: 3b31d33cdccfbad11dc6638d0200803227c220de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import scala.tools.nsc._

import scala.language.{ reflectiveCalls }

object Test {
  class DryRun {
    val compiler = new Global(new Settings()) {
      lazy val test1 = new AnyRef
    }
  }

  def main(args: Array[String]): Unit = {
    new DryRun().compiler.test1
  }
}