9b131c48b0
modified: test/bytecode/javFiles/Lambda.jav aufgeraeumt new file: test/bytecode/LambdaVoidTest.java new file: test/bytecode/javFiles/LambdaVoid.jav FunVoidN-Tests
10 lines
107 B
Java
10 lines
107 B
Java
import java.lang.Integer;
|
|
|
|
public class Lambda {
|
|
|
|
m () {
|
|
var lam1 = (x) -> { };
|
|
return lam1;
|
|
}
|
|
}
|