TypeScript/tests/baselines/reference/computedPropertyNamesDeclarationEmit3.errors.txt
2015-01-20 18:29:04 -08:00

9 lines
423 B
Plaintext

tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit3.ts(2,5): error TS1169: Computed property names are not allowed in interfaces.
==== tests/cases/conformance/es6/computedProperties/computedPropertyNamesDeclarationEmit3.ts (1 errors) ====
interface I {
["" + ""](): void;
~~~~~~~~~
!!! error TS1169: Computed property names are not allowed in interfaces.
}