DEBSOURCES
Skip Quicknav
sources / node-typescript / 3.3.3333-1 / tests / cases / compiler / genericCallsWithoutParens.ts
12345678
function f<T>() { } var r = f<number>; // parse error class C<T> { foo: T; } var c = new C<number>; // parse error