blob: a5358d3feb4ec8d4c534ff8c181deb6adca5c029 [file] [log] [blame]
// "Replace with lambda" "true"
import java.util.*;
class Test2 {
interface I<X> {
X foo(List<X> list);
}
static <T> I<T> bar(I<T> i){return i;}
{
bar(list -> null);
}
}