JavaCompilerCore/resources/bytecode/javFiles/Bug306.jav
Daniel Holle 7cb0e9dbb7
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 2m23s
Taking the super methods parameters should only happen for the types, fix #306
2024-03-25 13:43:30 +01:00

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