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

30 lines
1.5 KiB
Plaintext
Raw Normal View History

tests/cases/compiler/importDeclWithClassModifiers.ts(5,8): error TS1044: 'public' modifier cannot appear on a module element.
2015-03-02 21:21:53 +01:00
tests/cases/compiler/importDeclWithClassModifiers.ts(5,28): error TS2305: Module 'x' has no exported member 'c'.
tests/cases/compiler/importDeclWithClassModifiers.ts(6,8): error TS1044: 'private' modifier cannot appear on a module element.
2015-03-02 21:21:53 +01:00
tests/cases/compiler/importDeclWithClassModifiers.ts(6,29): error TS2305: Module 'x' has no exported member 'c'.
tests/cases/compiler/importDeclWithClassModifiers.ts(7,8): error TS1044: 'static' modifier cannot appear on a module element.
2015-03-02 21:21:53 +01:00
tests/cases/compiler/importDeclWithClassModifiers.ts(7,28): error TS2305: Module 'x' has no exported member 'c'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/importDeclWithClassModifiers.ts (6 errors) ====
module x {
interface c {
}
}
export public import a = x.c;
~~~~~~
!!! error TS1044: 'public' modifier cannot appear on a module element.
2015-03-02 21:21:53 +01:00
~
!!! error TS2305: Module 'x' has no exported member 'c'.
2015-03-02 21:21:53 +01:00
export private import b = x.c;
~~~~~~~
!!! error TS1044: 'private' modifier cannot appear on a module element.
2015-03-02 21:21:53 +01:00
~
!!! error TS2305: Module 'x' has no exported member 'c'.
2015-03-02 21:21:53 +01:00
export static import c = x.c;
~~~~~~
!!! error TS1044: 'static' modifier cannot appear on a module element.
2015-03-02 21:21:53 +01:00
~
!!! error TS2305: Module 'x' has no exported member 'c'.
2014-07-13 01:04:16 +02:00
var b: a;