summaryrefslogtreecommitdiff
path: root/test/files/pos/t812.scala
blob: 709b59c194e684579e2c00fe950e4af16d4f962c (plain) (blame)
1
2
3
4
5
6
7
package test;
import scala.{App => Main};
class Test extends Main {
  import test.{Test => Hello}
  super[App].main(Array("test"));
  private[Test] def xxx = 10;
}