JavaCompilerCore/resources/bytecode/javFiles/Bug306.jav

14 lines
192 B
Plaintext
Raw Normal View History

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);
}
}