TypeScript/tests/cases/compiler/deferredLookupTypeResolution2.ts

25 lines
803 B
TypeScript
Raw Normal View History

2017-08-02 21:07:09 +02:00
// @strict: true
// @declaration: true
// Repro from #17456
type StringContains<S extends string, L extends string> = ({ [K in S]: 'true' } & { [key: string]: 'false'})[L];
2018-04-09 20:51:55 +02:00
type ObjectHasKey<O, L extends string> = StringContains<Extract<keyof O, string>, L>;
2017-08-02 21:07:09 +02:00
type A<T> = ObjectHasKey<T, '0'>;
type B = ObjectHasKey<[string, number], '1'>; // "true"
type C = ObjectHasKey<[string, number], '2'>; // "false"
type D = A<[string]>; // "true"
// Error, "false" not handled
type E<T> = { true: 'true' }[ObjectHasKey<T, '1'>];
type Juxtapose<T> = ({ true: 'otherwise' } & { [k: string]: 'true' })[ObjectHasKey<T, '1'>];
// Error, "otherwise" is missing
type DeepError<T> = { true: 'true' }[Juxtapose<T>];
type DeepOK<T> = { true: 'true', otherwise: 'false' }[Juxtapose<T>];