diff options
Diffstat (limited to 'tests/bugs172/pr399590/two/Cage.java')
-rw-r--r-- | tests/bugs172/pr399590/two/Cage.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs172/pr399590/two/Cage.java b/tests/bugs172/pr399590/two/Cage.java new file mode 100644 index 000000000..7cdc1af64 --- /dev/null +++ b/tests/bugs172/pr399590/two/Cage.java @@ -0,0 +1,9 @@ + +class Animal<T,Q> { } + +class Bar {} + +class Intf {} + +public class Cage<T extends Animal<? extends Cage<T,Intf>,Intf>,Q> extends Bar { } + |