summaryrefslogtreecommitdiff
path: root/test/files/run/t2296c/Test.scala
blob: 1132bebebbd47e9843c7c127b214a8cba4537d2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package test

import bug.Global

object Test {
  def main(args: Array[String]) {
    val m = new Main()
    m.init()
    m.start()
  }
}

class Main extends Outer {
  m_glob = new Global()
}