summaryrefslogtreecommitdiff
path: root/test/files/jvm/t2585/Test.java
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2011-03-04 11:11:16 +0000
committerPaul Phillips <paulp@improving.org>2011-03-04 11:11:16 +0000
commit6055b574032a9f86f8d601d6a4c92f517041ebaa (patch)
tree486efbafd67dad53758b343071c5e3ef14485278 /test/files/jvm/t2585/Test.java
parentdb62da7582be751d9930eea81c8ef6fddc435184 (diff)
downloadscala-6055b574032a9f86f8d601d6a4c92f517041ebaa.tar.gz
scala-6055b574032a9f86f8d601d6a4c92f517041ebaa.tar.bz2
scala-6055b574032a9f86f8d601d6a4c92f517041ebaa.zip
Reverting some recent signature code and tempor...
Reverting some recent signature code and temporarily disabling a test so I can work this out without shattering the tranquility of the build. No review.
Diffstat (limited to 'test/files/jvm/t2585/Test.java')
-rw-r--r--test/files/jvm/t2585/Test.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/files/jvm/t2585/Test.java b/test/files/jvm/t2585/Test.java
deleted file mode 100644
index 51fe20d81e..0000000000
--- a/test/files/jvm/t2585/Test.java
+++ /dev/null
@@ -1,16 +0,0 @@
-class J { S s ; }
-
-public class Test {
- public static void main(String[] args) {
- final X x = new X();
- final OuterImpl o = new OuterImpl(x);
-
- final OuterImpl.Inner i1 = o.newInner();
- i1.getT().getI().getT().getI(); // <--- Error: "The method getI() is undefined for the type Object"
-
- final Outer<X>.Inner i2 = o.newInner();
- i2.getT().getI().getT().getI(); // <--- Error: "The method getI() is undefined for the type Object"
-
- HashMap<String, String> map = new HashMap<String, String>();
- }
-} \ No newline at end of file