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
fn value =let
a =
something
something =1in
something
--> should NOT transform tofn value =let
a =
something
in1
The above should not be reported. Even though a is necessarily unused (at least for the current implementation), it may still exist for a bit, which will cause the code not to compile anymore. It's likely that NoUnused.Variables is enabled and will fix the issue anyway, but we shouldn't rely on this.
The text was updated successfully, but these errors were encountered:
The above should not be reported. Even though
a
is necessarily unused (at least for the current implementation), it may still exist for a bit, which will cause the code not to compile anymore. It's likely thatNoUnused.Variables
is enabled and will fix the issue anyway, but we shouldn't rely on this.The text was updated successfully, but these errors were encountered: