summaryrefslogtreecommitdiff
path: root/test/files/neg/S2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/S2.scala')
-rw-r--r--test/files/neg/S2.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/files/neg/S2.scala b/test/files/neg/S2.scala
deleted file mode 100644
index 47687a916a..0000000000
--- a/test/files/neg/S2.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-/* I was wondering for a long time what types x and y have;
-** the compiler claims: z.Inner (see commented out line)
-** This is strange because z is not in scope.
-** Furthermore, compilation of this class yields the message: (why?)
-**
-** S2.scala:16: illegal cyclic reference involving value t
-** def t = foo(x, y);
-** ^
-*/
-object M {
- def foo[T](x: T, y: T): T = x;
- class S2() {
- class Inner() extends S2() {}
- def x = { val z = new S2(); new z.Inner(); }
- def y = { val z = new S2(); new z.Inner(); }
- def t = foo(x, y);
- //def testType: Inner = x;
- }
-}