// Repro from #8801 function alert(s: string) {} const parameterFn = (props:{store:string}) => alert(props.store) const brokenFunction = (f: (p: {dispatch: number} & OwnProps) => void) => (o: OwnProps) => o export const Form3 = brokenFunction(parameterFn)({store: "hello"})