summaryrefslogblamecommitdiff
path: root/test/files/run/t4426.scala
blob: 1cbd42da252d41599d379262753d5655b6fca92c (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 = {

  }
}