JavaTXCompilerInJavaTX/test/bytecode/javFiles/Lambda.jav
Martin Plümicke 3e9e222d73 Merge branch 'plugin' of ssh://gohorb.ba-horb.de/bahome/projekt/git/JavaCompilerCore into bytecode2
test/bytecode/javFiles/Lambda.jav
	test/bytecode/javFiles/OL.jav
2018-08-06 13:45:20 +02:00

19 lines
278 B
Java

import java.lang.Integer;
public class Lambda {
m () {
var lam1 = (x) -> {
return x;
};
<<<<<<< HEAD
return lam1;
=======
return lam1.apply(new Apply());
//return lam1;
//return new Vector();
>>>>>>> 3fedbcc4a0e015ec8f5f6ccb77081f888135c850
}
}