// "Remove redundant argument to call 'method(int, String)'" "true-preview" class A { public A() { method(5, true, "abc"); } private void method(int i, String string) { } }