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