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
Why is variable shadowing forbidden? { let x = 1 in let x = 1 in assert(x =1) }
returns Fatal error: exception (Failure "variable shadowing")
Should a user explicitly rename variables?
The text was updated successfully, but these errors were encountered:
Why is variable shadowing forbidden?
{ let x = 1 in let x = 1 in assert(x =1) }
returns
Fatal error: exception (Failure "variable shadowing")
Should a user explicitly rename variables?
The text was updated successfully, but these errors were encountered: