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

17 lines
271 B
TypeScript
Raw Normal View History

//@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);