blob: ee49ba66fe5e54fd825de461ce32c42e6e8206f6 [file] [log] [blame]
interface Generic<T> {
T foo();
}
class II implements Generic<?> {
public Object foo() {
<selection>return null;</selection>
}
}