Files
openide/java/java-tests/testData/refactoring/introduceVariable/OneLineLambdaValueCompatible.after.java
T

8 lines
145 B
Java

class Foo {
void test() {
Comparable<String> java = o -> {
int c = o.length();
return c;
};
}
}