TypeScript/tests/cases/conformance/es6/Symbols/symbolProperty15.ts

15 lines
252 B
TypeScript
Raw Normal View History

2015-02-02 21:48:18 +01:00
//@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);