We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c792e95 commit 12eeb69Copy full SHA for 12eeb69
tests/run/i2780/Base.java
@@ -0,0 +1,5 @@
1
+package bla;
2
+
3
+public class Base {
4
+ protected String foo = "";
5
+}
tests/run/i2780/Test.scala
@@ -0,0 +1,12 @@
+class Foo extends bla.Base {
+ class Inner {
+ println(foo)
+ }
6
7
+object Test {
8
+ def main(args: Array[String]): Unit = {
9
+ val f = new Foo
10
+ new f.Inner
11
12
0 commit comments