blob: ef528fc40ac931ab9a5e27103d56f9613ab50395 [file] [log] [blame]
// "Surround with array initialization" "true"
class A {
void bar(int i, String[] args){
}
void bar(int i, int j){}
void foo(String s){
bar(1, new String[]{s});
}
}