blob: acab87d339539a17dc12408a40ffd3523f3dda19 [file] [log] [blame]
// "Surround with array initialization" "false"
class A {
void bar(int i, String[] args){
}
void foo(String s){
bar(<caret>1, s);
}
}