TypeScript/tests/cases/compiler/identicalTypesNoDifferByCheckOrder.ts
Wesley Wigham 41ce98b440
Propagate saved variance flags from cached comparisons (#31688)
* Propegate saved variance flags from cached comparisons

* Propegate variance a bit more selectively

* Add test

* Remove now-redundant code

* Fix misspelling and remove unneeded branch
2019-05-31 16:11:08 -07:00

38 lines
1.2 KiB
TypeScript

// @strictNullChecks: true
interface SomeProps {
x?: string;
y?: number;
renderAs?: FunctionComponent1<SomeProps>
}
type SomePropsX = Required<Pick<SomeProps, "x">> & Omit<SomeProps, "x">;
interface SomePropsClone {
x?: string;
y?: number;
renderAs?: FunctionComponent2<SomeProps>
}
type SomePropsCloneX = Required<Pick<SomePropsClone, "x">> & Omit<SomePropsClone, "x">;
type Validator<T> = {(): boolean, opt?: T};
type WeakValidationMap<T> = {[K in keyof T]?: null extends T[K] ? Validator<T[K] | null | undefined> : Validator<T[K]>};
interface FunctionComponent1<P> {
(props: P & { children?: unknown }): void;
propTypes?: WeakValidationMap<P>;
}
interface FunctionComponent2<P> {
(props: P & { children?: unknown }): void;
propTypes?: WeakValidationMap<P>;
}
function needsComponentOfSomeProps3(...x: SomePropsClone[]): void {}
const comp3: FunctionComponent2<SomePropsCloneX> = null as any;
needsComponentOfSomeProps3({ renderAs: comp3 });
function needsComponentOfSomeProps2(...x: SomeProps[]): void {}
const comp2: FunctionComponent1<SomePropsX> = null as any;
needsComponentOfSomeProps2({ renderAs: comp2 });