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));
|
2019-07-06 19:41:12 -07:00
|
|
|
//~^ ERROR refutable pattern in local binding: `(std::i32::MIN..=0i32, _)` not covered
|
2014-05-31 15:13:46 +02:00
|
|
|
}
|