summaryrefslogtreecommitdiff
path: root/test/files/pos/t1101
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1101')
-rw-r--r--test/files/pos/t1101/J.java1
-rw-r--r--test/files/pos/t1101/S.scala1
2 files changed, 2 insertions, 0 deletions
diff --git a/test/files/pos/t1101/J.java b/test/files/pos/t1101/J.java
new file mode 100644
index 0000000000..2bc1d53e09
--- /dev/null
+++ b/test/files/pos/t1101/J.java
@@ -0,0 +1 @@
+class J { enum E { E1 } }
diff --git a/test/files/pos/t1101/S.scala b/test/files/pos/t1101/S.scala
new file mode 100644
index 0000000000..af7a591e58
--- /dev/null
+++ b/test/files/pos/t1101/S.scala
@@ -0,0 +1 @@
+class S { val x: J.E = null; System.out.println(J.E.E1) }