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

12 lines
685 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature4.ts(2,3): error TS1169: A computed property name in an interface must directly refer to a built-in symbol.
2015-01-13 19:30:32 +01:00
tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature4.ts(2,4): error TS2304: Cannot find name 'a'.
2015-01-13 19:30:32 +01:00
==== tests/cases/conformance/parser/ecmascript5/IndexSignatures/parserIndexSignature4.ts (2 errors) ====
2014-07-13 01:04:16 +02:00
interface I {
2015-01-13 19:30:32 +01:00
[a = 0] // Used to be indexer, now it is a computed property
~~~~~~~
!!! error TS1169: A computed property name in an interface must directly refer to a built-in symbol.
2015-01-13 19:30:32 +01:00
~
!!! error TS2304: Cannot find name 'a'.
2014-07-13 01:04:16 +02:00
}