blob: 2d931e5b0d2340f8eafa6c992533dc7c0833c08a [file] [log] [blame]
// "Replace with lambda" "true"
class X1 {
Runnable m() {
String s;
return () -> {
String s1;
};
}
}