blob: dfd4563e5a8227cd6888afbcf2f43f744af5de54 [file] [log] [blame]
interface I<T> {
void accept(T t);
}
class LamdbaTest<T> {
public void f() {
new A<T>(t -> g(t)) {};
}
private void g(T t) {
}
class A<T2> {
public A(I<T> editor) {
}
}
}