blob: 55ab07ef2008a8a8a4aa06034b9ca0fd16de0267 [file] [log] [blame]
// "Add 'String' as 1st parameter to method 'f'" "true"
public class S {
void f(String s, int... args) {
f("",null);
}
}