// "Remove redundant arguments to call 'method(boolean, T...)'" "true-preview" class A { public void foo() { method("abc", true, 7, "def"); } private void method(boolean b, T... ts) { } }