summaryrefslogtreecommitdiff
path: root/test/files/pos/signatures/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/signatures/Test.java')
-rw-r--r--test/files/pos/signatures/Test.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/signatures/Test.java b/test/files/pos/signatures/Test.java
new file mode 100644
index 0000000000..8ecac29910
--- /dev/null
+++ b/test/files/pos/signatures/Test.java
@@ -0,0 +1,11 @@
+import scala.collection.mutable.Vector;
+import test.Outer;
+
+/* Test correct generation of java signatures. The Outer class should not
+ * have a Java signature attribute for the inner method definition. Trait
+ * Mutable should have one, even though it is also a nested definition.
+ * (but for classes there is a way to tell about nesting to the JVM).
+ */
+class Test {
+ Outer o = new Outer();
+} \ No newline at end of file