blob: 9c2cfbc37a347da584c7e61fafaca52bf373e219 [file] [log] [blame]
interface Generic<T> {
T foo();
}
class II implements Generic<?> {
<caret>
}