We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db36559 commit 537f80dCopy full SHA for 537f80d
tests/run/i3339/A_1.scala
@@ -0,0 +1,5 @@
1
+package outer {
2
+ private class A() {
3
+ override def toString = "A"
4
+ }
5
+}
tests/run/i3339/B_2.scala
@@ -0,0 +1,9 @@
+ package inner {
+ object Test {
+ def main(args: Array[String]): Unit = {
+ println(new A()) // now ok
6
7
8
9
tests/run/i3339/Test_3.scala
@@ -0,0 +1,3 @@
+object Test extends App {
+ outer.inner.Test.main(Array())
0 commit comments