Here's a fun edge case: ```julia using NonlinearSolve function unsat(du,u,p) du[1] = 1 end unsatprob = NonlinearLeastSquaresProblem(f, nothing) sol = solve(unsatprob) # Success ```