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