Home
last modified time | relevance | path

Searched refs:T93 (Results 1 – 10 of 10) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DconditionalTypes1.types867 type T93<T> = T extends () => 0 ? () => 1 : () => 2;
868 >T93 : T93<T>
870 const f42 = <U>(a: T92<U>): T93<U> => a;
871 >f42 : <U>(a: T92<U>) => T93<U>
872 ><U>(a: T92<U>): T93<U> => a : <U>(a: T92<U>) => T93<U>
876 const f43 = <U>(a: T93<U>): T92<U> => a;
877 >f43 : <U>(a: T93<U>) => T92<U>
878 ><U>(a: T93<U>): T92<U> => a : <U>(a: T93<U>) => T92<U>
879 >a : T93<U>
880 >a : T93<U>
DconditionalTypes1.js282 type T93<T> = T extends () => 0 ? () => 1 : () => 2;
283 const f42 = <U>(a: T92<U>): T93<U> => a;
284 const f43 = <U>(a: T93<U>): T92<U> => a;
659 type T93<T> = T extends () => 0 ? () => 1 : () => 2;
660 declare const f42: <U>(a: T92<U>) => T93<U>;
661 declare const f43: <U>(a: T93<U>) => T92<U>;
DconditionalTypes1.symbols1070 type T93<T> = T extends () => 0 ? () => 1 : () => 2;
1071 >T93 : Symbol(T93, Decl(conditionalTypes1.ts, 279, 52))
1075 const f42 = <U>(a: T92<U>): T93<U> => a;
1081 >T93 : Symbol(T93, Decl(conditionalTypes1.ts, 279, 52))
1085 const f43 = <U>(a: T93<U>): T92<U> => a;
1089 >T93 : Symbol(T93, Decl(conditionalTypes1.ts, 279, 52))
DinferTypes1.types313 type T93 = Bar<["a", string]>; // never
314 >T93 : never
DinferTypes1.js107 type T93 = Bar<["a", string]>; // never
DconditionalTypes1.errors.txt437 type T93<T> = T extends () => 0 ? () => 1 : () => 2;
438 const f42 = <U>(a: T92<U>): T93<U> => a;
439 const f43 = <U>(a: T93<U>): T92<U> => a;
DinferTypes1.symbols494 type T93 = Bar<["a", string]>; // never
495 >T93 : Symbol(T93, Decl(inferTypes1.ts, 104, 46))
DinferTypes1.errors.txt163 type T93 = Bar<["a", string]>; // never
/third_party/typescript/tests/cases/conformance/types/conditional/
DconditionalTypes1.ts284 type T93<T> = T extends () => 0 ? () => 1 : () => 2; alias
285 const f42 = <U>(a: T92<U>): T93<U> => a;
286 const f43 = <U>(a: T93<U>): T92<U> => a;
DinferTypes1.ts109 type T93 = Bar<["a", string]>; // never alias