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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
=== tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/subtypesOfUnion.ts ===
enum E { e1, e2 }
>E : E
>e1 : E.e1
>e2 : E.e2
interface I8 { [x: string]: number[]; }
>x : string
class A { foo: number; }
>A : A
>foo : number
class A2<T> { foo: T; }
>A2 : A2<T>
>foo : T
function f() { }
>f : typeof f
module f { export var bar = 1; }
>f : typeof f
>bar : number
>1 : 1
class c { baz: string }
>c : c
>baz : string
module c { export var bar = 1; }
>c : typeof c
>bar : number
>1 : 1
// A type T is a subtype of a union type U if T is a subtype of any type in U.
interface I1<T> {
[x: string]: string | number;
>x : string
foo: any; // ok
>foo : any
foo2: string; // ok
>foo2 : string
foo3: number; // ok
>foo3 : number
foo4: boolean; // error
>foo4 : boolean
foo5: E; // ok - subtype of number
>foo5 : E
foo6: Date; // error
>foo6 : Date
foo7: RegExp; // error
>foo7 : RegExp
foo8: { bar: number }; // error
>foo8 : { bar: number; }
>bar : number
foo9: I8; // error
>foo9 : I8
foo10: A; // error
>foo10 : A
foo11: A2<number>; // error
>foo11 : A2<number>
foo12: (x) => number; //error
>foo12 : (x: any) => number
>x : any
foo13: <T>(x: T) => T; // error
>foo13 : <T>(x: T) => T
>x : T
foo14: typeof f; // error
>foo14 : typeof f
>f : typeof f
foo15: typeof c; // error
>foo15 : typeof c
>c : typeof c
foo16: T; // error
>foo16 : T
foo17: Object; // error
>foo17 : Object
foo18: {}; // error
>foo18 : {}
}
interface I2<T> {
[x: string]: E | number;
>x : string
foo: any; // ok
>foo : any
foo2: string; // error
>foo2 : string
foo3: number; // ok
>foo3 : number
foo4: boolean; // error
>foo4 : boolean
foo5: E; // ok
>foo5 : E
foo6: Date; // error
>foo6 : Date
foo7: RegExp; // error
>foo7 : RegExp
foo8: { bar: number }; // error
>foo8 : { bar: number; }
>bar : number
foo9: I8; // error
>foo9 : I8
foo10: A; // error
>foo10 : A
foo11: A2<number>; // error
>foo11 : A2<number>
foo12: (x) => number; //error
>foo12 : (x: any) => number
>x : any
foo13: <T>(x: T) => T; // error
>foo13 : <T>(x: T) => T
>x : T
foo14: typeof f; // error
>foo14 : typeof f
>f : typeof f
foo15: typeof c; // error
>foo15 : typeof c
>c : typeof c
foo16: T; // error
>foo16 : T
foo17: Object; // error
>foo17 : Object
foo18: {}; // error
>foo18 : {}
}
|