JavaPatternMatching/test/bytecode/javFiles/Lambda.jav

16 lines
208 B
Plaintext
Raw Normal View History

import java.util.Vector;
class Apply { }
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 = (x) -> {
2018-05-02 18:54:07 +00:00
return x;
};
return lam1.apply(new Apply());
// return lam1;
// return new Vector();
2018-05-02 18:54:07 +00:00
}
2017-11-29 13:45:15 +00:00
}