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