JavaCompilerCore/resources/bytecode/javFiles/Bug302.jav
Daniel Holle 43da2ffbdc
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m47s
Fix #302
2024-03-25 14:49:18 +01:00

11 lines
215 B
Java

import java.util.ArrayList;
import java.util.List;
import java.lang.Integer;
public class Bug302 {
public Bug302(List<Integer> a){}
public static m() {
new Bug302(new ArrayList<Integer>());
}
}