TypeScript/tests/baselines/reference/missingSemicolonInModuleSpecifier.symbols

11 lines
219 B
Plaintext

=== tests/cases/compiler/a.ts ===
export const x = 1;
>x : Symbol(x, Decl(a.ts, 1, 12))
=== tests/cases/compiler/b.ts ===
import {x} from "./a"
>x : Symbol(x, Decl(b.ts, 0, 8))
(function() { return 1; }())