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

11 lines
673 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration6.ts(1,8): error TS1030: 'export' modifier already seen.
2015-04-27 03:31:47 +02:00
tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration6.ts(1,25): error TS1148: Cannot compile modules unless the '--module' flag is provided.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration6.ts (2 errors) ====
export export interface I {
~~~~~~
!!! error TS1030: 'export' modifier already seen.
~
2015-04-27 03:31:47 +02:00
!!! error TS1148: Cannot compile modules unless the '--module' flag is provided.
}