]> git.lizzy.rs Git - rust.git/blob - src/test/ui/pattern/usefulness/issue-3096-2.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / pattern / usefulness / issue-3096-2.stderr
1 error[E0004]: non-exhaustive patterns: type `*const Bottom` is non-empty
2   --> $DIR/issue-3096-2.rs:5:11
3    |
4 LL |     match x { }
5    |           ^
6    |
7    = note: the matched value is of type `*const Bottom`
8 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
9    |
10 LL ~     match x {
11 LL +         _ => todo!(),
12 LL ~     }
13    |
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0004`.