TypeScript/tests/baselines/reference/importOnAliasedIdentifiers.types
2014-08-28 12:40:58 -07:00

34 lines
500 B
Plaintext

=== tests/cases/compiler/importOnAliasedIdentifiers.ts ===
module A {
>A : typeof A
export interface X { s: string }
>X : X
>s : string
export var X: X;
>X : X
>X : X
}
module B {
>B : typeof B
interface A { n: number }
>A : A
>n : number
import Y = A; // Alias only for module A
>Y : typeof Y
>A : typeof Y
import Z = A.X; // Alias for both type and member A.X
>Z : Y.X
>A : typeof Y
>X : Y.X
var v: Z = Z;
>v : Y.X
>Z : Y.X
>Z : Y.X
}