swc/crates/swc_ecma_parser/tests/tsc/thisInInstanceMemberInitializer.ts

8 lines
65 B
TypeScript

class C {
x = this;
}
class D<T> {
x = this;
y: T;
}