JavaCompilerCore/test/bytecode/javFiles/Lambda.jav

12 lines
140 B
Plaintext
Raw Normal View History

import java.lang.Integer;
2017-11-29 13:45:15 +00:00
2018-05-02 18:54:07 +00:00
public class Lambda {
2017-11-29 13:45:15 +00:00
2018-05-02 18:54:07 +00:00
m () {
var lam1 = (Integer x) -> {
return x * x;
2018-05-02 18:54:07 +00:00
};
return lam1;
2018-05-02 18:54:07 +00:00
}
2017-11-29 13:45:15 +00:00
}