JavaTXCompilerInJavaTX/app/resources/bytecode/javFiles/LambdaCapture.jav
2023-01-10 14:22:05 +01:00

12 lines
152 B
Java

import java.lang.Integer;
public class LambdaCapture {
Integer i = 8;
f;
public LambdaCapture(){
Integer w = 7;
f = j ->{
return w+i;};
}
}