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

12 lines
154 B
TypeScript

class C { foo: string; }
interface C { foo: string; }
module M {
class D {
bar: string;
}
interface D {
bar: string;
}
}