Files
openide/java/java-tests/testData/refactoring/introduceField/beforeFromLambdaExpr.java
2012-07-24 17:51:53 +02:00

13 lines
216 B
Java

interface SAM<X> {
X m(int i, int j);
}
class Foo {
void test() {
m((i, j) -> {
<selection>0</selection>
return i + j;
});
}
void m(SAM<Integer> s) { }
}