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

                        

                                         

                
                                                


                                 
  



                                 
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]) {
    new DryRun().compiler.test1
  }
}