// "Remove redundant argument to call 'method(String...)'" "true-preview" class A { public A() { method(new String[] {"abc", "def"}); } private void method(String... strings) { } }