1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
=== tests/cases/conformance/types/typeAliases/reservedNamesInAliases.ts ===
interface I {}
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))
type any = I;
>any : Symbol(any, Decl(reservedNamesInAliases.ts, 0, 14))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))
type number = I;
>number : Symbol(number, Decl(reservedNamesInAliases.ts, 1, 13))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))
type boolean = I;
>boolean : Symbol(boolean, Decl(reservedNamesInAliases.ts, 2, 16))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))
type string = I;
>string : Symbol(string, Decl(reservedNamesInAliases.ts, 3, 17))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))
type void = I;
type object = I;
>object : Symbol(object, Decl(reservedNamesInAliases.ts, 5, 14))
>I : Symbol(I, Decl(reservedNamesInAliases.ts, 0, 0))
|