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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(8,5): error TS2322: Type 'B' is not assignable to type '1'.
Type '2' is not assignable to type '1'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(9,5): error TS2322: Type 'C' is not assignable to type '1'.
Type '2' is not assignable to type '1'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(10,5): error TS2322: Type 'D' is not assignable to type '1'.
Type '0' is not assignable to type '1'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(14,5): error TS2322: Type '1' is not assignable to type 'B'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(16,5): error TS2322: Type 'C' is not assignable to type 'B'.
Type '1' is not assignable to type 'B'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(17,5): error TS2322: Type 'D' is not assignable to type 'B'.
Type '0' is not assignable to type 'B'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(24,5): error TS2322: Type 'D' is not assignable to type 'C'.
Type '0' is not assignable to type 'C'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(29,5): error TS2322: Type 'B' is not assignable to type 'D'.
Type '3' is not assignable to type 'D'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(30,5): error TS2322: Type 'C' is not assignable to type 'D'.
Type '3' is not assignable to type 'D'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(35,5): error TS2322: Type '0' is not assignable to type '1'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(37,5): error TS2322: Type '2' is not assignable to type '1'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(38,5): error TS2322: Type '3' is not assignable to type '1'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(39,5): error TS2322: Type '0' is not assignable to type 'B'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(40,5): error TS2322: Type '1' is not assignable to type 'B'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(43,5): error TS2322: Type '0' is not assignable to type 'C'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(50,5): error TS2322: Type '3' is not assignable to type 'D'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(54,5): error TS2367: This comparison appears to be unintentional because the types '1' and '0' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(56,5): error TS2367: This comparison appears to be unintentional because the types '1' and '2' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(57,5): error TS2367: This comparison appears to be unintentional because the types '1' and '3' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(58,5): error TS2367: This comparison appears to be unintentional because the types 'B' and '0' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(59,5): error TS2367: This comparison appears to be unintentional because the types 'B' and '1' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(62,5): error TS2367: This comparison appears to be unintentional because the types 'C' and '0' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(69,5): error TS2367: This comparison appears to be unintentional because the types 'D' and '3' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(74,5): error TS2367: This comparison appears to be unintentional because the types '1' and 'B' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(77,5): error TS2367: This comparison appears to be unintentional because the types 'B' and '1' have no overlap.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(94,14): error TS2678: Type '1' is not comparable to type '0 | 2 | 4'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(96,14): error TS2678: Type '3' is not comparable to type '0 | 2 | 4'.
tests/cases/conformance/types/literal/numericLiteralTypes3.ts(98,14): error TS2678: Type '5' is not comparable to type '0 | 2 | 4'.
==== tests/cases/conformance/types/literal/numericLiteralTypes3.ts (28 errors) ====
type A = 1;
type B = 2 | 3;
type C = 1 | 2 | 3;
type D = 0 | 1 | 2;
function f1(a: A, b: B, c: C, d: D) {
a = a;
a = b;
~
!!! error TS2322: Type 'B' is not assignable to type '1'.
!!! error TS2322: Type '2' is not assignable to type '1'.
a = c;
~
!!! error TS2322: Type 'C' is not assignable to type '1'.
!!! error TS2322: Type '2' is not assignable to type '1'.
a = d;
~
!!! error TS2322: Type 'D' is not assignable to type '1'.
!!! error TS2322: Type '0' is not assignable to type '1'.
}
function f2(a: A, b: B, c: C, d: D) {
b = a;
~
!!! error TS2322: Type '1' is not assignable to type 'B'.
b = b;
b = c;
~
!!! error TS2322: Type 'C' is not assignable to type 'B'.
!!! error TS2322: Type '1' is not assignable to type 'B'.
b = d;
~
!!! error TS2322: Type 'D' is not assignable to type 'B'.
!!! error TS2322: Type '0' is not assignable to type 'B'.
}
function f3(a: A, b: B, c: C, d: D) {
c = a;
c = b;
c = c;
c = d;
~
!!! error TS2322: Type 'D' is not assignable to type 'C'.
!!! error TS2322: Type '0' is not assignable to type 'C'.
}
function f4(a: A, b: B, c: C, d: D) {
d = a;
d = b;
~
!!! error TS2322: Type 'B' is not assignable to type 'D'.
!!! error TS2322: Type '3' is not assignable to type 'D'.
d = c;
~
!!! error TS2322: Type 'C' is not assignable to type 'D'.
!!! error TS2322: Type '3' is not assignable to type 'D'.
d = d;
}
function f5(a: A, b: B, c: C, d: D) {
a = 0;
~
!!! error TS2322: Type '0' is not assignable to type '1'.
a = 1;
a = 2;
~
!!! error TS2322: Type '2' is not assignable to type '1'.
a = 3;
~
!!! error TS2322: Type '3' is not assignable to type '1'.
b = 0;
~
!!! error TS2322: Type '0' is not assignable to type 'B'.
b = 1;
~
!!! error TS2322: Type '1' is not assignable to type 'B'.
b = 2;
b = 3;
c = 0;
~
!!! error TS2322: Type '0' is not assignable to type 'C'.
c = 1;
c = 2;
c = 3;
d = 0;
d = 1;
d = 2;
d = 3;
~
!!! error TS2322: Type '3' is not assignable to type 'D'.
}
function f6(a: A, b: B, c: C, d: D) {
a === 0;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types '1' and '0' have no overlap.
a === 1;
a === 2;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types '1' and '2' have no overlap.
a === 3;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types '1' and '3' have no overlap.
b === 0;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types 'B' and '0' have no overlap.
b === 1;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types 'B' and '1' have no overlap.
b === 2;
b === 3;
c === 0;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types 'C' and '0' have no overlap.
c === 1;
c === 2;
c === 3;
d === 0;
d === 1;
d === 2;
d === 3;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types 'D' and '3' have no overlap.
}
function f7(a: A, b: B, c: C, d: D) {
a === a;
a === b;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types '1' and 'B' have no overlap.
a === c;
a === d;
b === a;
~~~~~~~
!!! error TS2367: This comparison appears to be unintentional because the types 'B' and '1' have no overlap.
b === b;
b === c;
b === d;
c === a;
c === b;
c === c;
c === d;
d === a;
d === b;
d === c;
d === d;
}
function f8(x: 0 | 2 | 4) {
switch (x) {
case 0: return;
case 1: return;
~
!!! error TS2678: Type '1' is not comparable to type '0 | 2 | 4'.
case 2: return;
case 3: return;
~
!!! error TS2678: Type '3' is not comparable to type '0 | 2 | 4'.
case 4: return;
case 5: return;
~
!!! error TS2678: Type '5' is not comparable to type '0 | 2 | 4'.
}
}
|