Daniel Holle
7cb0e9dbb7
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m23s
14 lines
192 B
Java
14 lines
192 B
Java
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);
|
|
}
|
|
}
|