class Base { constructor(a: this) { } } class Generic { } class Derived { n: number; constructor(public host: Generic) { let self: this = this; this.n = 12; } }