TypeScript/tests/cases/compiler/thisTypeAsConstraint.ts

4 lines
46 B
TypeScript
Raw Normal View History

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