| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2021-01-12 | Include `..` suggestion if fields are all wildcards | Camelid | -0/+2 | |
| 2021-01-12 | Add a test case with lots of whitespace | Camelid | -0/+8 | |
| 2021-01-12 | Only suggest `..` if more than one field is missing | Camelid | -4/+0 | |
| 2021-01-12 | Specialize `..` help message for all fields vs. the rest | Camelid | -6/+6 | |
| 2021-01-12 | Suggest `_` and `..` if a pattern has too few fields | Camelid | -0/+49 | |
| For example, this code: struct S(i32, f32); let S(x) = S(0, 1.0); will make the compiler suggest either: let S(x, _) = S(0, 1.0); or: let S(x, ..) = S(0, 1.0); | ||||
