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

9 lines
95 B
TypeScript

class C {
static f: number;
f: number;
}
class D {
static f: number;
f() { }
}