=== tests/cases/compiler/sourceMapValidationImport.ts === export module m { >m : typeof m export class c { >c : c } } import a = m.c; >a : typeof c >m : c >c : c export import b = m.c; >b : typeof c >m : c >c : c var x = new a(); >x : c >new a() : c >a : typeof c var y = new b(); >y : c >new b() : c >b : typeof c