JavaCompilerCore/resources/bytecode/javFiles/Bug326.jav
Daniel Holle df2ec4b1ba
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 3m9s
Fix #326, convert captures to correct types
2024-04-30 16:55:40 +02:00

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);
}
}