mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
13 lines
274 B
TypeScript
13 lines
274 B
TypeScript
//@target: ES6
|
|
class C {
|
|
[Symbol.iterator](x: string): { x: string };
|
|
[Symbol.iterator](x: "hello"): { x: string; hello: string };
|
|
[Symbol.iterator](x: any) {
|
|
return undefined;
|
|
}
|
|
}
|
|
|
|
var c = new C;
|
|
c[Symbol.iterator]("");
|
|
c[Symbol.iterator]("hello");
|