diff options
Diffstat (limited to 'tests/bugs150/pr112602/Implementation.java')
-rw-r--r-- | tests/bugs150/pr112602/Implementation.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs150/pr112602/Implementation.java b/tests/bugs150/pr112602/Implementation.java new file mode 100644 index 000000000..e248016e8 --- /dev/null +++ b/tests/bugs150/pr112602/Implementation.java @@ -0,0 +1,9 @@ +import java.util.Collection; + +public class Implementation implements GenericInterface<Collection<?>>{ + + public Collection<?> doSomething(Class<? extends Collection<?>> type) { + return null; + } + +} |