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

17 lines
270 B
TypeScript

//@target: ES6
class C {
[Symbol.iterator]: { x; y };
}
interface I {
[Symbol.iterator]: { x };
}
declare function foo(i: I): I;
declare function foo(a: any): any;
declare function bar(i: C): C;
declare function bar(a: any): any;
foo(new C);
var i: I;
bar(i);