blob: 48157c4ded2aab1fef42898005715c5a1ab638f5 [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 = (s1, s2) -> <caret>
}
}