TypeScript/tests/cases/compiler/reExportUndefined2.ts
2016-01-21 13:35:58 -08:00

10 lines
188 B
TypeScript

// @module: commonjs
// @filename: a.ts
var undefined;
export { undefined };
// @filename: b.ts
import { undefined } from "./a";
declare function use(a: number);
use(undefined);