TypeScript/tests/cases/conformance/types/thisType/thisTypeInFunctions3.ts

10 lines
147 B
TypeScript
Raw Normal View History

declare class Base {
check<TProp extends this>(prop: TProp): boolean;
}
class Test extends Base {
m() {
this.check(this);
}
}