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
In #5830 we decided that all multi-element wildcards in patterns should be represented as .., not *, or .._, but also that tuple and tuple-struct patterns should support ... Add that support - there's a test case in src/test/run-pass/ignore-all-the-things.rs.
The text was updated successfully, but these errors were encountered:
The #10124 VG proposal includes ..binding in value lists - function arguments, tuples, tuple structs, enum variants etc. - with an optional binding (capturing multiple values in a tuple), a limited version of that can be added without a complete VG implementation.
In #5830 we decided that all multi-element wildcards in patterns should be represented as
..
, not*
, or.._
, but also that tuple and tuple-struct patterns should support..
. Add that support - there's a test case insrc/test/run-pass/ignore-all-the-things.rs
.The text was updated successfully, but these errors were encountered: