TypeScript/tests/baselines/reference/constructorInvocationWithTooFewTypeArgs.errors.txt
2014-07-12 17:30:19 -07:00

13 lines
296 B
Plaintext

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