]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-precise_pointer_size_matching.stderr
Address code reviews
[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:6:11
3    |
4 LL |     match 0usize {
5    |           ^^^^^^ pattern `_` not covered
6    |
7    = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
8    = note: the matched value is of type `usize`
9    = note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
10    = help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
11
12 error[E0004]: non-exhaustive patterns: `_` not covered
13   --> $DIR/feature-gate-precise_pointer_size_matching.rs:10:11
14    |
15 LL |     match 0isize {
16    |           ^^^^^^ pattern `_` not covered
17    |
18    = help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
19    = note: the matched value is of type `isize`
20    = note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
21    = help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0004`.