Files
JavaCompilerCore/resources/bytecode/javFiles/Bug364.jav
Daniel Holle 09a6b9a788
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 13m35s
Fix lambda expression captures
2025-06-18 18:31:22 +02:00

8 lines
154 B
Java

import java.lang.String;
public class Bug364{
public main(){
var f = x -> y -> z -> x + y + z;
return f.apply("A").apply("B").apply("C");
}
}