JavaCompilerCore/test/javFiles/mathStruc.jav
2017-08-28 18:36:26 +02:00

13 lines
183 B
Java

class mathStruc<A> {
mathStruc(A a) { }
A model(){ A a; return a; }
methode(){
auto innerOp = o -> ms ->
new mathStruc<A>(o.apply(this.model(),ms.model()));
return innerOp;
}
}