2018-08-08 07:28:26 -05:00
|
|
|
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
|
|
|
|
|
2018-11-30 07:53:15 -06:00
|
|
|
error[E0005]: refutable pattern in local binding: `(-2147483648i32..=0i32, _)` not covered
|
2018-08-08 07:28:26 -05:00
|
|
|
--> $DIR/refutable-pattern-errors.rs:16:9
|
|
|
|
|
|
|
|
|
LL | let (1, (Some(1), 2..=3)) = (1, (None, 2));
|
2018-11-30 07:53:15 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ pattern `(-2147483648i32..=0i32, _)` not covered
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0005`.
|