You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It turns out that the compiler has a blank implementation of visit_ty (which does not recurse). The only relevant recursing is the visit_expr on the length of a fixed-length vector. If recursion is enabled (which I'm doing), the compiler dies all over the place because the expression doesn't have a type listed in the tcx.
For now I'm disabling recursion manually (to restore the old behavior), and tagging all relevant locations with this issue.