Files
openide/java/java-tests/testData/refactoring/changeSignature/ReorderParamsOfFunctionalInterface_after.java

9 lines
91 B
Java

interface I {
void m(int b, boolean a);
}
class Test {
{
I i = (b, a) -> {};
}
}