erasure wildcards when generate overriding

(cherry picked from commit 58ced7b4e6be23577a1427c93a7b9c58a4edb5f3)
This commit is contained in:
anna
2012-11-30 16:53:49 +01:00
parent 8d44b61a55
commit 6fe44eee73
4 changed files with 23 additions and 1 deletions
@@ -0,0 +1,7 @@
interface Generic<T> {
T foo();
}
class II implements Generic<?> {
<caret>
}