JavaCompilerCore/resources/bytecode/javFiles/Bug297.jav

11 lines
213 B
Plaintext
Raw Normal View History

2024-03-18 11:14:03 +00: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);
}
}