2018-05-28 19:42:11 -07:00
|
|
|
fn func((1, (Some(1), 2..=3)): (isize, (Option<isize>, isize))) { }
|
2014-06-19 20:55:12 +02:00
|
|
|
//~^ ERROR refutable pattern in function argument: `(_, _)` not covered
|
2014-05-31 15:13:46 +02:00
|
|
|
|
|
|
|
|
fn main() {
|
2018-05-28 19:42:11 -07:00
|
|
|
let (1, (Some(1), 2..=3)) = (1, (None, 2));
|
2018-11-30 13:53:15 +00:00
|
|
|
//~^ ERROR refutable pattern in local binding: `(-2147483648i32..=0i32, _)` not covered
|
2014-05-31 15:13:46 +02:00
|
|
|
}
|