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
After updating to 1.0.28 I started receiving an unused parens warning for an enum containing a tuple variant with at least two arguments (i.e. A(usize) won't trigger the warning). I don't get this warning on 1.0.27.
Thanks! The parentheses used to be a workaround for a compiler issue that has since been fixed: rust-lang/rust#47311. I removed the workaround in 30361ac and released 1.0.29 which should have no warnings.
After updating to
1.0.28
I started receiving an unused parens warning for an enum containing a tuple variant with at least two arguments (i.e.A(usize)
won't trigger the warning). I don't get this warning on1.0.27
.Example:
Output:
The text was updated successfully, but these errors were encountered: