blob: b92a31efbc6471185b3012e84672a453c8374392 [file] [log] [blame]
class Test {
<T> void fo<caret>o(T... t){
for (T t1 : t) {}
}
void bar(){
foo("");
}
}