summaryrefslogblamecommitdiff
path: root/test/files/run/t4072.scala
blob: 872072a4ce4632a7a3e5470d0a99057c4dcfd6cb (plain) (tree)
1
2
3
4
5
6
7
8
9



                        
                                                


                                 
  



                                 
import scala.tools.nsc._

object Test {
  class DryRun {
    val compiler = new Global(new Settings()) { 
      lazy val test1 = new AnyRef
    }
  }
  
  def main(args: Array[String]) {
    new DryRun().compiler.test1
  }
}