mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
15 lines
238 B
TypeScript
15 lines
238 B
TypeScript
//@target: ES6
|
|
class C { }
|
|
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); |