20 lines
858 B
Plaintext
20 lines
858 B
Plaintext
error[E0004]: non-exhaustive patterns: `$ISIZE_MIN..=-6isize` and `21isize..=$ISIZE_MAX` not covered
|
|
--> $DIR/precise_pointer_size_matching.rs:24:11
|
|
|
|
|
LL | match 0isize {
|
|
| ^^^^^^ patterns `$ISIZE_MIN..=-6isize` and `21isize..=$ISIZE_MAX` not covered
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
error[E0004]: non-exhaustive patterns: `0usize` and `21usize..=$USIZE_MAX` not covered
|
|
--> $DIR/precise_pointer_size_matching.rs:29:11
|
|
|
|
|
LL | match 0usize {
|
|
| ^^^^^^ patterns `0usize` and `21usize..=$USIZE_MAX` not covered
|
|
|
|
|
= help: ensure that all possible cases are being handled, possibly by adding wildcards or more match arms
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0004`.
|