1991bbbcd3
FunN-Types werden nach RefTypes mit FunN$$ nach Unifikation zurueckkonvertiert. modified: target/JavaTXcompiler-0.1-jar-with-dependencies.jar modified: test/bytecode/javFiles/Faculty.jav modified: test/bytecode/javFiles/Lambda.jav modified: test/bytecode/javFiles/OL.jav modified: test/javFiles/Lambda.jav
12 lines
136 B
Java
12 lines
136 B
Java
import java.lang.Integer;
|
|
|
|
public class Lambda {
|
|
|
|
m () {
|
|
var lam1 = (Integer x) -> {
|
|
return x;
|
|
};
|
|
return lam1;
|
|
}
|
|
}
|