diff options
Diffstat (limited to 'src/test/ui/compile-fail-migration/refutable-pattern-errors.stderr')
| -rw-r--r-- | src/test/ui/compile-fail-migration/refutable-pattern-errors.stderr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/compile-fail-migration/refutable-pattern-errors.stderr b/src/test/ui/compile-fail-migration/refutable-pattern-errors.stderr new file mode 100644 index 00000000000..c2d5fe001fc --- /dev/null +++ b/src/test/ui/compile-fail-migration/refutable-pattern-errors.stderr @@ -0,0 +1,15 @@ +error[E0005]: refutable pattern in function argument: `(_, _)` not covered + --> $DIR/refutable-pattern-errors.rs:12:9 + | +LL | fn func((1, (Some(1), 2..=3)): (isize, (Option<isize>, isize))) { } + | ^^^^^^^^^^^^^^^^^^^^^ pattern `(_, _)` not covered + +error[E0005]: refutable pattern in local binding: `(_, _)` not covered + --> $DIR/refutable-pattern-errors.rs:16:9 + | +LL | let (1, (Some(1), 2..=3)) = (1, (None, 2)); + | ^^^^^^^^^^^^^^^^^^^^^ pattern `(_, _)` not covered + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0005`. |
