TypeScript/tests/baselines/reference/exportAssignmentError.types
2014-08-15 14:37:48 -07:00

16 lines
216 B
Plaintext

=== 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