Files
rust/tests/ui/pattern/usefulness/integer-ranges/pointer-sized-int.deny.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

231 lines
11 KiB
Plaintext
Raw Normal View History

2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:14:11
2020-11-20 19:03:56 +00:00
|
LL | match 0usize {
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `usize`
= note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ 0 ..= usize::MAX => {},
LL + _ => todo!()
|
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:19:11
2020-11-20 19:03:56 +00:00
|
LL | match 0isize {
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `isize`
= note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ isize::MIN ..= isize::MAX => {},
LL + _ => todo!()
|
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:24:8
|
LL | m!(0usize, 0..);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `usize`
= note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
error[E0004]: non-exhaustive patterns: `_` not covered
--> $DIR/pointer-sized-int.rs:26:8
2020-11-20 19:03:56 +00:00
|
LL | m!(0usize, 0..=usize::MAX);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `usize`
= note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2022-06-19 16:46:26 -07:00
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:28:8
2020-11-20 19:03:56 +00:00
|
LL | m!(0usize, 0..5 | 5..=usize::MAX);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `usize`
= note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2022-06-19 16:46:26 -07:00
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:30:8
2020-11-20 19:03:56 +00:00
|
LL | m!(0usize, 0..usize::MAX | usize::MAX);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `usize`
= note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2022-06-19 16:46:26 -07:00
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `(_, _)` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:32:8
2020-11-20 19:03:56 +00:00
|
LL | m!((0usize, true), (0..5, true) | (5..=usize::MAX, true) | (0..=usize::MAX, false));
| ^^^^^^^^^^^^^^ pattern `(_, _)` not covered
|
= note: the matched value is of type `(usize, bool)`
= note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2022-06-19 16:46:26 -07:00
LL | match $s { $($t)+ => {}, (_, _) => todo!() }
| +++++++++++++++++++
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:34:8
|
LL | m!(0usize, 0..=usize::MAX | usize::MAX..);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `usize`
= note: `usize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `usize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
error[E0004]: non-exhaustive patterns: `_` not covered
--> $DIR/pointer-sized-int.rs:37:8
|
LL | m!(0isize, ..0 | 0..);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `isize`
= note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
error[E0004]: non-exhaustive patterns: `_` not covered
--> $DIR/pointer-sized-int.rs:39:8
2020-11-20 19:03:56 +00:00
|
LL | m!(0isize, isize::MIN..=isize::MAX);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `isize`
= note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2022-06-19 16:46:26 -07:00
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:41:8
2020-11-20 19:03:56 +00:00
|
LL | m!(0isize, isize::MIN..5 | 5..=isize::MAX);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `isize`
= note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2022-06-19 16:46:26 -07:00
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:43:8
2020-11-20 19:03:56 +00:00
|
LL | m!(0isize, isize::MIN..isize::MAX | isize::MAX);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `isize`
= note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2022-06-19 16:46:26 -07:00
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `(_, _)` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:45:8
2020-11-20 19:03:56 +00:00
|
LL | m!((0isize, true), (isize::MIN..5, true)
| ^^^^^^^^^^^^^^ pattern `(_, _)` not covered
|
= note: the matched value is of type `(isize, bool)`
= note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2022-06-19 16:46:26 -07:00
LL | match $s { $($t)+ => {}, (_, _) => todo!() }
| +++++++++++++++++++
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: `_` not covered
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:48:8
|
LL | m!(0isize, ..=isize::MIN | isize::MIN..=isize::MAX | isize::MAX..);
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `isize`
= note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL | match $s { $($t)+ => {}, _ => todo!() }
| ++++++++++++++
error[E0004]: non-exhaustive patterns: `_` not covered
--> $DIR/pointer-sized-int.rs:51:11
2020-11-20 19:03:56 +00:00
|
LL | match 0isize {
| ^^^^^^ pattern `_` not covered
|
= note: the matched value is of type `isize`
= note: `isize` does not have a fixed maximum value, so a wildcard `_` is necessary to match exhaustively
= help: add `#![feature(precise_pointer_size_matching)]` to the crate attributes to enable precise `isize` matching
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
2023-02-27 17:43:39 +00:00
LL ~ 1 ..= isize::MAX => {},
LL + _ => todo!()
|
2020-11-20 19:03:56 +00:00
error[E0004]: non-exhaustive patterns: type `usize` is non-empty
2023-10-12 22:23:38 +02:00
--> $DIR/pointer-sized-int.rs:58:11
2020-11-20 19:03:56 +00:00
|
LL | match 7usize {}
| ^^^^^^
|
= note: the matched value is of type `usize`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown
|
LL ~ match 7usize {
LL + _ => todo!(),
LL + }
|
2020-11-20 19:03:56 +00:00
2023-10-12 22:23:38 +02:00
error: aborting due to 16 previous errors
2020-11-20 19:03:56 +00:00
For more information about this error, try `rustc --explain E0004`.