]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-precise_pointer_size_matching.stderr
parser will not give wrong help message for 'public'
[rust.git] / src / test / ui / feature-gates / feature-gate-precise_pointer_size_matching.stderr
1 error[E0004]: non-exhaustive patterns: `_` not covered
2   --> $DIR/feature-gate-precise_pointer_size_matching.rs:2:11
3    |
4 LL |     match 0usize {
5    |           ^^^^^^ pattern `_` not covered
6    |
7    = note: the matched value is of type `usize`
8    = note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
9    = help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
10 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
11    |
12 LL ~         0..=usize::MAX => {}
13 LL +         _ => todo!()
14    |
15
16 error[E0004]: non-exhaustive patterns: `_` not covered
17   --> $DIR/feature-gate-precise_pointer_size_matching.rs:10:11
18    |
19 LL |     match 0isize {
20    |           ^^^^^^ pattern `_` not covered
21    |
22    = note: the matched value is of type `isize`
23    = note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
24    = help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
25 help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
26    |
27 LL ~         isize::MIN..=isize::MAX => {}
28 LL +         _ => todo!()
29    |
30
31 error: aborting due to 2 previous errors
32
33 For more information about this error, try `rustc --explain E0004`.