blob: 6e57fe289d79b36c7c795dffa7292529a2bdc4ee [file] [log] [blame]
interface I<T> {
void m(T t);
}
class Test {
public static void main(String[] args) {
I<String> i = <caret>
}
}