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
currently, the outermost scope behaves differently from a block:
{call()
call()}
fails to parse, but
call()call()
succeeds. note the lack of semicolon after the first call(). this should error out in both cases - only the last expression of a block, if any, is allowed to not have a semicolon
The text was updated successfully, but these errors were encountered:
currently, the outermost scope behaves differently from a block:
fails to parse, but
succeeds. note the lack of semicolon after the first
call()
. this should error out in both cases - only the last expression of a block, if any, is allowed to not have a semicolonThe text was updated successfully, but these errors were encountered: