TypeScript/tests/baselines/reference/constructorInvocationWithTooFewTypeArgs.errors.txt
2014-09-11 16:11:08 -07:00

13 lines
310 B
Plaintext

==== tests/cases/compiler/constructorInvocationWithTooFewTypeArgs.ts (1 errors) ====
class D<T, U> {
x: T
y: U
}
var d = new D<number>();
~~~~~~~~~~~~~~~
!!! error TS2346: Supplied parameters do not match any signature of call target.