summaryrefslogtreecommitdiff
path: root/test/files/pos5/chang
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos5/chang')
-rw-r--r--test/files/pos5/chang/Outer.java11
-rw-r--r--test/files/pos5/chang/Test.scala3
2 files changed, 14 insertions, 0 deletions
diff --git a/test/files/pos5/chang/Outer.java b/test/files/pos5/chang/Outer.java
new file mode 100644
index 0000000000..acdb4e2904
--- /dev/null
+++ b/test/files/pos5/chang/Outer.java
@@ -0,0 +1,11 @@
+package com.netgents.hello;
+
+public class Outer<A> {
+
+ public Inner inner = new Inner();
+
+ public class Inner {
+
+ public A a;
+ }
+}
diff --git a/test/files/pos5/chang/Test.scala b/test/files/pos5/chang/Test.scala
new file mode 100644
index 0000000000..9bb745e377
--- /dev/null
+++ b/test/files/pos5/chang/Test.scala
@@ -0,0 +1,3 @@
+object Test extends Application {
+ new com.netgents.hello.Outer[String]
+}