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
<anon>:3:9: 3:16 error: unresolved name `println`. Did you mean `iter`?
<anon>:3 println("{}", i);
^~~~~~~
error: aborting due to previous error
playpen: application terminated with error code 101
which is not helpful.
The text was updated successfully, but these errors were encountered:
This is a bit towards E-hard, because macro expansion and name resolution happen in two different places and we do not retain much macro-related information by the time resolve happens. That is, you’d need to reconstruct a list of all macro names from scratch when an error happens to suggest something here.
yields (on playpen):
which is not helpful.
The text was updated successfully, but these errors were encountered: