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

42 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-04-29 02:03:39 +02:00
tests/cases/compiler/systemModule9.ts(2,21): error TS2307: Cannot find module 'file1'.
tests/cases/compiler/systemModule9.ts(3,25): error TS2307: Cannot find module 'file2'.
tests/cases/compiler/systemModule9.ts(4,15): error TS2307: Cannot find module 'file3'.
tests/cases/compiler/systemModule9.ts(6,25): error TS2307: Cannot find module 'file5'.
tests/cases/compiler/systemModule9.ts(7,22): error TS2307: Cannot find module 'file6'.
tests/cases/compiler/systemModule9.ts(17,15): error TS2307: Cannot find module 'file7'.
2015-04-11 17:50:11 +02:00
==== tests/cases/compiler/systemModule9.ts (6 errors) ====
import * as ns from 'file1';
~~~~~~~
2015-04-29 02:03:39 +02:00
!!! error TS2307: Cannot find module 'file1'.
2015-04-11 17:50:11 +02:00
import {a, b as c} from 'file2';
~~~~~~~
2015-04-29 02:03:39 +02:00
!!! error TS2307: Cannot find module 'file2'.
2015-04-11 17:50:11 +02:00
import d from 'file3'
~~~~~~~
2015-04-29 02:03:39 +02:00
!!! error TS2307: Cannot find module 'file3'.
import 'file4'
import e, * as ns2 from 'file5';
2015-04-11 17:50:11 +02:00
~~~~~~~
2015-04-29 02:03:39 +02:00
!!! error TS2307: Cannot find module 'file5'.
import ns3 = require('file6');
~~~~~~~
2015-04-29 02:03:39 +02:00
!!! error TS2307: Cannot find module 'file6'.
2015-04-11 17:50:11 +02:00
ns.f();
a();
c();
d();
e();
ns2.f();
ns3.f();
export * from 'file7';
2015-04-11 17:50:11 +02:00
~~~~~~~
2015-04-29 02:03:39 +02:00
!!! error TS2307: Cannot find module 'file7'.
2015-04-11 17:50:11 +02:00
var x, y = true;
export {x};
export {y as z};