TypeScript/tests/baselines/reference/exportAssignmentError.types

16 lines
216 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/exportAssignmentError.ts ===
module M {
>M : typeof M
export var x;
>x : any
}
import M2 = M;
>M2 : typeof M
>M : typeof M
export = M2; // should not error
>M2 : typeof M