Files
openide/java/java-tests/testData/refactoring/inlineMethod/OnLambda.java.after
2017-08-24 18:16:56 +03:00

9 lines
118 B
Plaintext

class Foo {
void m(Runnable r) {}
void ff(Runnable r) {
m(r);
}
{
m(() -> {});
}
}