summaryrefslogtreecommitdiff
path: root/test/files/pos/bug812.scala
blob: ccbe6db5cefee0ea9e5d29e5d7c983ae975b8c48 (plain) (blame)
1
2
3
4
5
6
7
package test;
import scala.{Application => Main};
class Test extends Main {
  import test.{Test => Hello}
  super[Application].executionStart;
  private[Test] def xxx = 10;
}