TypeScript/tests/baselines/reference/symbolProperty43.errors.txt
2015-02-06 21:31:58 -08:00

10 lines
481 B
Plaintext

tests/cases/conformance/es6/Symbols/symbolProperty43.ts(3,5): error TS2391: Function implementation is missing or not immediately following the declaration.
==== tests/cases/conformance/es6/Symbols/symbolProperty43.ts (1 errors) ====
class C {
[Symbol.iterator](x: string): string;
[Symbol.iterator](x: number): number;
~~~~~~~~~~~~~~~~~
!!! error TS2391: Function implementation is missing or not immediately following the declaration.
}