TypeScript/tests/cases/compiler/thisTypeAsConstraint.ts
2016-01-26 10:16:46 -08:00

4 lines
46 B
TypeScript

class C {
public m<T extends this>() {
}
}