TypeScript/tests/baselines/reference/parserES5SymbolIndexer1.errors.txt

9 lines
450 B
Text
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolIndexer1.ts(2,9): error TS1188: 'symbol' indexers are only available when targeting ECMAScript 6 and higher.
2015-01-26 23:34:22 +01:00
2015-02-04 00:52:06 +01:00
==== tests/cases/conformance/parser/ecmascript5/Symbols/parserES5SymbolIndexer1.ts (1 errors) ====
2015-01-26 23:34:22 +01:00
interface I {
2015-02-04 00:52:06 +01:00
[s: symbol]: string;
2015-01-26 23:34:22 +01:00
~~~~~~
!!! error TS1188: 'symbol' indexers are only available when targeting ECMAScript 6 and higher.
2015-01-26 23:34:22 +01:00
}