JavaCompilerCore/resources/bytecode/javFiles/Bug293.jav
Daniel Holle a1b5c0541b
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m55s
Fix NPE in generics, probably because interface method don't have code
2024-03-15 17:14:27 +01:00

14 lines
152 B
Java

import java.lang.Integer;
import java.lang.Float;
public class Bug293 {
bar(a) {
return 2 * a;
}
}
interface IFoo {
void ga();
}