JavaCompilerCore/test/bytecode/javFiles/Lambda.jav

18 lines
184 B
Plaintext
Raw Normal View History

2017-11-29 13:45:15 +00:00
class Lambda{
methode(){
return ((f) -> f);
}
}
/*
interface Fun0<A>{
A apply();
}
interface Fun1<A,B>{
A apply(B b);
}
*/
interface Fun2<A,B,C>{
A apply(B b, C c);
}