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
Especially for a tuple, if we declare it before assigning to it, we should be able to error (maybe in some cases, only warn?) and prevent a runtime NPE.
v: SomeTupleType;
v.attr = ...;
Currently there is no warning/error here, so it crashes at runtime.
The text was updated successfully, but these errors were encountered:
Especially for a tuple, if we declare it before assigning to it, we should be able to error (maybe in some cases, only warn?) and prevent a runtime NPE.
Currently there is no warning/error here, so it crashes at runtime.
The text was updated successfully, but these errors were encountered: