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