Daniel Holle
df2ec4b1ba
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 3m9s
9 lines
148 B
Java
9 lines
148 B
Java
import java.lang.Integer;
|
|
|
|
public class Bug326 {
|
|
public Bug326() {
|
|
var func = x -> y -> x * y;
|
|
return func.apply(3).apply(4);
|
|
}
|
|
}
|