summaryrefslogtreecommitdiff
path: root/test/files/neg/tests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/tests.scala')
-rw-r--r--test/files/neg/tests.scala9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/files/neg/tests.scala b/test/files/neg/tests.scala
index 04a72fa222..9b70a0ee19 100644
--- a/test/files/neg/tests.scala
+++ b/test/files/neg/tests.scala
@@ -45,3 +45,12 @@ object Test0Test {
}
//############################################################################
+// Test 1 - References to Generated Classes
+
+trait Test1 {
+ def a: Any = new scala.Tuple2$class(1,1);
+ def b: scala.Predef$$anon$7;
+ def c: scala.List$Class;
+}
+
+//############################################################################