JavaCompilerCore/test/bytecode/javFiles/Lambda4.jav

18 lines
184 B
Plaintext
Raw Normal View History

2018-05-02 18:54:07 +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);
}