diff options
Diffstat (limited to 'tests/bugs170/pr382189/one/SuperA.java')
-rw-r--r-- | tests/bugs170/pr382189/one/SuperA.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/bugs170/pr382189/one/SuperA.java b/tests/bugs170/pr382189/one/SuperA.java new file mode 100644 index 000000000..09755a197 --- /dev/null +++ b/tests/bugs170/pr382189/one/SuperA.java @@ -0,0 +1,5 @@ +import java.util.List; + +public abstract class SuperA<T> { + public abstract SuperB<T> getSomeB(SuperB<T> b); +} |