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
This same error also occurs if _ is passed as an argument to any function except for a constructor of a class where I get an error that says can't read from '_'.
The text was updated successfully, but these errors were encountered:
This change moves a check from the verify pass to the expr pass in
order to catch an illegal read from '_' in a function argument before
trying to use said argument.
Closesponylang#2157.
This change moves a check from the verify pass to the expr pass in
order to catch an illegal read from '_' in a function argument before
trying to use said argument.
Closes#2157.
In the following code:
The last line causes the following assert in the compiler:
This same error also occurs if
_
is passed as an argument to any function except for aconstructor
of a class where I get an error that sayscan't read from '_'
.The text was updated successfully, but these errors were encountered: