forked from JavaTX/JavaCompilerCore
14 lines
139 B
Plaintext
14 lines
139 B
Plaintext
|
|
||
|
class Apply { }
|
||
|
|
||
|
public class Lambda {
|
||
|
|
||
|
m () {
|
||
|
var lam1 = (x) -> {
|
||
|
return x;
|
||
|
};
|
||
|
return lam1.apply(new Apply());
|
||
|
}
|
||
|
}
|
||
|
|