blob: 159cd7916e485e5ffc7bc2b93965243f6e1eaad2 [file] [log] [blame]
// "Replace with expression lambda" "true"
class Test {
{
Runnable c = () -> foo();
}
int foo() {return 1;}
}