forked from JavaTX/JavaCompilerCore
0ecaf36648
Bei Literal die Zuweisung des Typs eingefuegt aber wieder auskommentiert, weil es im Moment nur double Literals gibt. modified: test/javFiles/Lambda.jav
13 lines
139 B
Java
13 lines
139 B
Java
class Apply { }
|
|
|
|
public class Lambda {
|
|
|
|
m () {
|
|
var lam1 = (x) -> {
|
|
return x;
|
|
};
|
|
return lam1.apply(new Apply());
|
|
}
|
|
}
|
|
|