blob: 97652c778c1e520e0aeb295010d01518023a6ad5 [file] [log] [blame]
class Test {
void foo() {
bar(newMethod());
baz(newMethod());
}
private String newMethod() {
return String.valueOf(1);
}
private void bar(String s) {
}
private void baz(String... s) {
}
}