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

23 lines
1.1 KiB
Plaintext
Raw Normal View History

tests/cases/compiler/indexSignatureWithInitializer.ts(3,5): 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/compiler/indexSignatureWithInitializer.ts(3,6): error TS2304: Cannot find name 'x'.
tests/cases/compiler/indexSignatureWithInitializer.ts(7,5): error TS1166: A computed property name in a class property declaration must directly refer to a built-in symbol.
2015-01-13 19:30:32 +01:00
tests/cases/compiler/indexSignatureWithInitializer.ts(7,6): error TS2304: Cannot find name 'x'.
2015-01-13 19:30:32 +01:00
==== tests/cases/compiler/indexSignatureWithInitializer.ts (4 errors) ====
// These used to be indexers, now they are computed properties
2014-07-13 01:04:16 +02:00
interface I {
[x = '']: string;
~~~~~~~~
!!! 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 'x'.
2014-07-13 01:04:16 +02:00
}
class C {
[x = 0]: string
~~~~~~~
!!! error TS1166: A computed property name in a class property declaration must directly refer to a built-in symbol.
2015-01-13 19:30:32 +01:00
~
!!! error TS2304: Cannot find name 'x'.
2014-07-13 01:04:16 +02:00
}