fn coroutine_closure_to_ambiguous_coroutine<'tcx>(
    tcx: TyCtxt<'tcx>,
    goal_kind: ClosureKind,
    goal_region: Region<'tcx>,
    def_id: DefId,
    args: CoroutineClosureArgs<'tcx>,
    sig: CoroutineClosureSignature<'tcx>
) -> Ty<'tcx>
Expand description

Given a coroutine-closure, project to its returned coroutine when we are not certain that the closure’s kind is compatible with the goal, and therefore also don’t know yet what the closure’s upvars are.

Note that we do not also push a AsyncFnKindHelper goal here.