11 lines
213 B
Plaintext
Raw Normal View History

2024-03-18 12:14:03 +01:00
import java.lang.Integer;
public class Bug297 {
public static operation(func, a, b) {
return func.apply(a, b);
}
public exec() {
return Foo.operation((x, y) -> x + y, 10, 10);
}
}