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

16 lines
948 B
Plaintext
Raw Normal View History

2015-03-12 06:55:09 +01:00
tests/cases/compiler/es6ImportNamedImport_1.ts(1,10): error TS2305: Module '"tests/cases/compiler/es6ImportNamedImportNoExportMember_0"' has no exported member 'a1'.
tests/cases/compiler/es6ImportNamedImport_1.ts(2,10): error TS2305: Module '"tests/cases/compiler/es6ImportNamedImportNoExportMember_0"' has no exported member 'x1'.
==== tests/cases/compiler/es6ImportNamedImportNoExportMember_0.ts (0 errors) ====
export var a = 10;
export var x = a;
==== tests/cases/compiler/es6ImportNamedImport_1.ts (2 errors) ====
import { a1 } from "es6ImportNamedImportNoExportMember_0";
~~
!!! error TS2305: Module '"tests/cases/compiler/es6ImportNamedImportNoExportMember_0"' has no exported member 'a1'.
import { x1 as x } from "es6ImportNamedImportNoExportMember_0";
~~
!!! error TS2305: Module '"tests/cases/compiler/es6ImportNamedImportNoExportMember_0"' has no exported member 'x1'.