14 lines
192 B
Plaintext
14 lines
192 B
Plaintext
|
import java.lang.Integer;
|
||
|
import java.util.List;
|
||
|
|
||
|
class Base {
|
||
|
m(List<Integer> a) {}
|
||
|
}
|
||
|
|
||
|
public class Bug306 extends Base {
|
||
|
@Override
|
||
|
m(List<Integer> b) {
|
||
|
b.add(1);
|
||
|
}
|
||
|
}
|