blob: 2e3a2c925b0ca43134c4dc7d8d66e983942249aa [file] [log] [blame]
// "Surround with array initialization" "true"
class A {
void bar(String[] args){
}
void foo(String s){
bar(new String[]{s});
}
}