9 lines
148 B
Plaintext
9 lines
148 B
Plaintext
|
import java.lang.Integer;
|
||
|
|
||
|
public class Bug326 {
|
||
|
public Bug326() {
|
||
|
var func = x -> y -> x * y;
|
||
|
return func.apply(3).apply(4);
|
||
|
}
|
||
|
}
|