summaryrefslogblamecommitdiff
path: root/test/files/run/t4426.scala
blob: 95759444d6b9e3d860ffe1e1257722b5ce5197af (plain) (tree)
1
2
3
4
5
6
7
8






                                                                      
                                         









                                                      
  
                                         
    


   
import scala.tools.nsc._

object Test {
  val x = {
      val settings = new Settings()
      settings.classpath.value = System.getProperty("java.class.path")

    object cc extends Global(settings) { 
      object dummy

      override def computePluginPhases() = {
        super.computePluginPhases()
        assert(dummy ne null, "Dummy not initialized")
      }
    }
    new cc.Run
    ()
  }
  
  def main(args: Array[String]): Unit = {
    
  }
}