JavaCompilerCore/test/javFiles/Faculty.jav
2017-09-25 23:47:38 +02:00

14 lines
180 B
Java

class Faculty {
Integer mul(Integer x, Integer y) {
return x;
}
m () {
var fact = (Integer x) -> {
return mul(x, fact.apply(x));
};
return fact;
}
}