TypeScript/tests/cases/compiler/constructorInvocationWithTooFewTypeArgs.ts
2014-07-12 17:30:19 -07:00

10 lines
73 B
TypeScript

class D<T, U> {
x: T
y: U
}
var d = new D<number>();