Files
2013-05-06 20:55:21 +02:00

9 lines
147 B
Java

interface Generic<T> {
T foo();
}
class II implements Generic<?> {
public Object foo() {
<selection>return null;</selection>
}
}