blob: dd4cc71e2808af5f0503e906657faeb3db62f0f1 [file] [log] [blame]
class Test {
void foo() {
new Foo<Num<caret>ber>(1);
}
}
class Foo<T> {
Foo(T t) {
}
}