11 lines
215 B
Java
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>());
|
|
}
|
|
} |