diff options
| author | Sebastian Toh <sebas.tsj.98@gmail.com> | 2023-08-03 11:39:03 +0800 |
|---|---|---|
| committer | Sebastian Toh <sebas.tsj.98@gmail.com> | 2023-08-21 11:18:20 +0800 |
| commit | 82ce7b14613c4703e2a21775c60c578ac9246db2 (patch) | |
| tree | b80bd124ee386314373585d6948dda693b0b3d2e /tests/ui/pattern/usefulness/integer-ranges/pointer-sized-int.deny.stderr | |
| parent | 5c6a7e71cd66705c31c9af94077901a220f0870c (diff) | |
| download | rust-82ce7b14613c4703e2a21775c60c578ac9246db2.tar.gz rust-82ce7b14613c4703e2a21775c60c578ac9246db2.zip | |
Add note when matching on tuples/ADTs containing non-exhaustive types
Diffstat (limited to 'tests/ui/pattern/usefulness/integer-ranges/pointer-sized-int.deny.stderr')
| -rw-r--r-- | tests/ui/pattern/usefulness/integer-ranges/pointer-sized-int.deny.stderr | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/ui/pattern/usefulness/integer-ranges/pointer-sized-int.deny.stderr b/tests/ui/pattern/usefulness/integer-ranges/pointer-sized-int.deny.stderr index 0e0f0c3e11e..df330c60b1e 100644 --- a/tests/ui/pattern/usefulness/integer-ranges/pointer-sized-int.deny.stderr +++ b/tests/ui/pattern/usefulness/integer-ranges/pointer-sized-int.deny.stderr @@ -77,6 +77,8 @@ LL | m!((0usize, true), (0..5, true) | (5..=usize::MAX, true) | (0..=usize:: | ^^^^^^^^^^^^^^ 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 | LL | match $s { $($t)+ => {}, (_, _) => todo!() } @@ -131,6 +133,8 @@ 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 | LL | match $s { $($t)+ => {}, (_, _) => todo!() } |
