blob: ae462e09f556a2896df400b889b2e7026c51c8b5 [file] [log] [blame]
// "Remove redundant arguments to call 'method(int, T)'" "true"
class A {
public A() {
method(5, new Exception());
}
private <T extends Exception> void method(int i, T t) {
}
}