// "Remove redundant argument to call 'method(int, T...)'" "true-preview" class A { public void foo() { method("abc", 1, "def", 2); } private void method(int i, T... ts) { } }