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
The following code type checks, but fails to generate the correct WASM instructions.
main ::(){
x:any ="test"
printf("x is {}\n", x)}
This is because any matches any type, but the code generator fails to handle the case where a separate stack allocation for the any data needs to be made.
The text was updated successfully, but these errors were encountered:
The following code type checks, but fails to generate the correct WASM instructions.
This is because
any
matches any type, but the code generator fails to handle the case where a separate stack allocation for the any data needs to be made.The text was updated successfully, but these errors were encountered: