summaryrefslogtreecommitdiff
path: root/test/pending/pos/t7778/Foo_1.java
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-08-23 11:14:09 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-08-23 11:18:06 +0200
commited34bcb651ed9911d48c88d9f1e6b3adfd88a2f8 (patch)
tree1b193fb4f688a191e583ef8162ff692d8b3b5395 /test/pending/pos/t7778/Foo_1.java
parent7b351dca8458f599f5fafef4daa307351031ef06 (diff)
downloadscala-ed34bcb651ed9911d48c88d9f1e6b3adfd88a2f8.tar.gz
scala-ed34bcb651ed9911d48c88d9f1e6b3adfd88a2f8.tar.bz2
scala-ed34bcb651ed9911d48c88d9f1e6b3adfd88a2f8.zip
SI-942 A test case, five years adrift.
I'm looking at the changes made in 47f35b587, which prevented cyclic errors in class file parsing. That fix is insufficient for, or otherwise complicit in, SI-7778, for which I've enclosed a pending test.
Diffstat (limited to 'test/pending/pos/t7778/Foo_1.java')
-rw-r--r--test/pending/pos/t7778/Foo_1.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/pending/pos/t7778/Foo_1.java b/test/pending/pos/t7778/Foo_1.java
new file mode 100644
index 0000000000..65431ffd46
--- /dev/null
+++ b/test/pending/pos/t7778/Foo_1.java
@@ -0,0 +1,6 @@
+import java.util.concurrent.Callable;
+
+public abstract class Foo_1<T> implements Callable<Foo_1<Object>.Inner> {
+ public abstract class Inner {
+ }
+}