JavaCompilerCore/test/bytecode/LambdaExpr2.jav

8 lines
84 B
Java

class LambdaExpr2 {
op = ()->method();
method() {
return 2;
}
}