aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs172/pr399590/two/Cage2.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs172/pr399590/two/Cage2.java')
-rw-r--r--tests/bugs172/pr399590/two/Cage2.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs172/pr399590/two/Cage2.java b/tests/bugs172/pr399590/two/Cage2.java
new file mode 100644
index 000000000..6758be4ce
--- /dev/null
+++ b/tests/bugs172/pr399590/two/Cage2.java
@@ -0,0 +1,13 @@
+
+class Animal2<T,Q> { }
+
+class Bar2 {}
+
+class Intf2 {}
+
+public class Cage2<T extends Animal2<? extends Cage2<T,Intf2>,Intf2>,Q> extends Bar2 { }
+
+
+aspect X {
+ declare parents: Cage2 implements java.io.Serializable;
+}