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

9 lines
441 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration9.ts(2,4): error TS1031: 'export' modifier cannot appear on a class element.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration9.ts (1 errors) ====
class C {
export [x: string]: string;
~~~~~~
!!! error TS1031: 'export' modifier cannot appear on a class element.
2014-07-13 01:04:16 +02:00
}