TypeScript/tests/baselines/reference/subtypesOfAny.types
Wesley Wigham f8b6a8fc8d
Introduce literal freshness for literal enum member types (#26556)
* Introduce literal freshness for literal enum members, allow enum references in ambient const initializers

* Merge statements

* Add enum literal readonly property test case

* Accept better baselines post-merge
2018-09-07 12:09:07 -07:00

222 lines
2.5 KiB
Plaintext

=== tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfAny.ts ===
// every type is a subtype of any, no errors expected
interface I {
[x: string]: any;
>x : string
foo: any;
>foo : any
}
interface I2 {
[x: string]: any;
>x : string
foo: number;
>foo : number
}
interface I3 {
[x: string]: any;
>x : string
foo: string;
>foo : string
}
interface I4 {
[x: string]: any;
>x : string
foo: boolean;
>foo : boolean
}
interface I5 {
[x: string]: any;
>x : string
foo: Date;
>foo : Date
}
interface I6 {
[x: string]: any;
>x : string
foo: RegExp;
>foo : RegExp
}
interface I7 {
[x: string]: any;
>x : string
foo: { bar: number };
>foo : { bar: number; }
>bar : number
}
interface I8 {
[x: string]: any;
>x : string
foo: number[];
>foo : number[]
}
interface I9 {
[x: string]: any;
>x : string
foo: I8;
>foo : I8
}
class A { foo: number; }
>A : A
>foo : number
interface I10 {
[x: string]: any;
>x : string
foo: A;
>foo : A
}
class A2<T> { foo: T; }
>A2 : A2<T>
>foo : T
interface I11 {
[x: string]: any;
>x : string
foo: A2<number>;
>foo : A2<number>
}
interface I12 {
[x: string]: any;
>x : string
foo: (x) => number;
>foo : (x: any) => number
>x : any
}
interface I13 {
[x: string]: any;
>x : string
foo: <T>(x:T) => T;
>foo : <T>(x: T) => T
>x : T
}
enum E { A }
>E : E
>A : E.A
interface I14 {
[x: string]: any;
>x : string
foo: E;
>foo : E
}
function f() { }
>f : typeof f
module f {
>f : typeof f
export var bar = 1;
>bar : number
>1 : 1
}
interface I15 {
[x: string]: any;
>x : string
foo: typeof f;
>foo : typeof f
>f : typeof f
}
class c { baz: string }
>c : c
>baz : string
module c {
>c : typeof c
export var bar = 1;
>bar : number
>1 : 1
}
interface I16 {
[x: string]: any;
>x : string
foo: typeof c;
>foo : typeof c
>c : typeof c
}
interface I17<T> {
[x: string]: any;
>x : string
foo: T;
>foo : T
}
interface I18<T, U> {
[x: string]: any;
>x : string
foo: U;
>foo : U
}
//interface I18<T, U extends T> {
// [x: string]: any;
// foo: U;
//}
interface I19 {
[x: string]: any;
>x : string
foo: Object;
>foo : Object
}
interface I20 {
[x: string]: any;
>x : string
foo: {};
>foo : {}
}