blob: 0d325f03ffba89f0e05da9c96f1c83ebc6047169 [file] [log] [blame]
// "Add 'String' as 2nd parameter to method 'f'" "true"
import java.util.List;
public class S {
void f(List<@Anno String> args, String s) {
f(null, "");
}
}