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