blob: f8768f665909c9fab78865c46bfe06afcf4081b4 [file] [log] [blame]
class A<T> {
A(T... t) {
}
{
bar(new A<>(<caret>) );
}
<T> void bar(A<T> s) {}
}