TypeScript/tests/baselines/reference/mergeWithImportedType.types
2016-03-18 22:26:52 -07:00

15 lines
289 B
Plaintext

=== tests/cases/compiler/f1.ts ===
export enum E {X}
>E : E
>X : E
=== tests/cases/compiler/f2.ts ===
import {E} from "./f1";
>E : typeof E
// partial revert of https://github.com/Microsoft/TypeScript/pull/7583 to prevent breaking changes
export type E = E;
>E : E
>E : E