@@ -10,25 +10,25 @@ declare const sym2: unique symbol;
1010type T1 = string & 'a'; // 'a'
1111>T1 : Symbol(T1, Decl(intersectionReduction.ts, 3, 34))
1212
13- type T2 = 'a' & string & 'b'; // 'a' & 'b'
13+ type T2 = 'a' & string & 'b'; // never
1414>T2 : Symbol(T2, Decl(intersectionReduction.ts, 5, 23))
1515
1616type T3 = number & 10; // 10
1717>T3 : Symbol(T3, Decl(intersectionReduction.ts, 6, 29))
1818
19- type T4 = 10 & number & 20; // 10 & 20
19+ type T4 = 10 & number & 20; // never
2020>T4 : Symbol(T4, Decl(intersectionReduction.ts, 7, 22))
2121
2222type T5 = symbol & typeof sym1; // typeof sym1
2323>T5 : Symbol(T5, Decl(intersectionReduction.ts, 8, 27))
2424>sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 2, 13))
2525
26- type T6 = typeof sym1 & symbol & typeof sym2; // typeof sym1 & typeof sym2
26+ type T6 = typeof sym1 & symbol & typeof sym2; // never
2727>T6 : Symbol(T6, Decl(intersectionReduction.ts, 9, 31))
2828>sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 2, 13))
2929>sym2 : Symbol(sym2, Decl(intersectionReduction.ts, 3, 13))
3030
31- type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // 'a' & 10 & typeof sym1
31+ type T7 = string & 'a' & number & 10 & symbol & typeof sym1; // never
3232>T7 : Symbol(T7, Decl(intersectionReduction.ts, 10, 45))
3333>sym1 : Symbol(sym1, Decl(intersectionReduction.ts, 2, 13))
3434
0 commit comments