TypeScript/tests/cases/compiler/constraintsUsedInPrototypeProperty.ts

2 lines
89 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class Foo<T extends number, U, V extends string> { }
Foo.prototype; // Foo<any, any, any>