TypeScript/tests/cases/compiler/reExportUndefined2.ts

10 lines
188 B
TypeScript
Raw Normal View History

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