JavaCompilerCore/test/bytecode/javFiles/LamAssign.jav

15 lines
180 B
Plaintext
Raw Normal View History

2018-01-31 15:15:07 +00:00
import java.lang.Integer;
2017-11-29 13:45:15 +00:00
class LamAssign {
m () {
var lam1 = (Integer x) -> {
return x;
};
return lam1;
}
}
interface Fun1<A,B>{
public A apply(B b);
}