blob: 778f7a69c0482854ce9bda28195ab7f3d873ed13 [file] [log] [blame]
def foo(String s, int... var) {
bar(var)
}
<selection>foo</selection>('a')
-----
def foo(String s, int... var) {
bar(var)
}
bar([] as int[])