]> git.lizzy.rs Git - rust.git/blob - tests/ui/patterns.stderr
Auto merge of #5065 - matthiaskrgr:rustup_28, r=matthiaskrgr
[rust.git] / tests / ui / patterns.stderr
1 error: the `y @ _` pattern can be written as just `y`
2   --> $DIR/patterns.rs:10:9
3    |
4 LL |         y @ _ => (),
5    |         ^^^^^ help: try: `y`
6    |
7    = note: `-D clippy::redundant-pattern` implied by `-D warnings`
8
9 error: aborting due to previous error
10