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
Add braces around "let with multiple patterns" case (#20)
This fixes the trailing semicolon warning:
```
warning: trailing semicolon in macro used in expression position
--> src/lib.rs:297:37
|
297 | then { assert_eq!(x, 42); }
| ^
|
= note: `#[warn(semicolon_in_expressions_from_macros)]` on by default
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #79813 <rust-lang/rust#79813>
```
0 commit comments