rust/tests/ui/pattern/ignore-all-the-things.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
982 B
Rust
Raw Normal View History

//@ run-pass
#![allow(non_shorthand_field_patterns)]
#![allow(dead_code)]
#![allow(unused_variables)]
struct Foo(isize, isize, isize, isize);
struct Bar{a: isize, b: isize, c: isize, d: isize}
pub fn main() {
let Foo(..) = Foo(5, 5, 5, 5);
2013-11-28 20:22:53 +00:00
let Foo(..) = Foo(5, 5, 5, 5);
let Bar{..} = Bar{a: 5, b: 5, c: 5, d: 5};
let (..) = (5, 5, 5, 5);
let Foo(a, b, ..) = Foo(5, 5, 5, 5);
let Foo(.., d) = Foo(5, 5, 5, 5);
let (a, b, ..) = (5, 5, 5, 5);
let (.., c, d) = (5, 5, 5, 5);
let Bar{b: b, ..} = Bar{a: 5, b: 5, c: 5, d: 5};
2015-01-25 21:05:03 +00:00
match [5, 5, 5, 5] {
2013-11-08 03:25:39 +00:00
[..] => { }
}
2015-01-25 21:05:03 +00:00
match [5, 5, 5, 5] {
[a, ..] => { }
2013-11-08 03:25:39 +00:00
}
2015-01-25 21:05:03 +00:00
match [5, 5, 5, 5] {
[.., b] => { }
2013-11-08 03:25:39 +00:00
}
2015-01-25 21:05:03 +00:00
match [5, 5, 5, 5] {
[a, .., b] => { }
2013-11-08 03:25:39 +00:00
}
2015-01-25 21:05:03 +00:00
match [5, 5, 5] {
2013-11-28 20:22:53 +00:00
[..] => { }
2013-11-08 03:25:39 +00:00
}
2015-01-25 21:05:03 +00:00
match [5, 5, 5] {
2013-11-28 20:22:53 +00:00
[a, ..] => { }
}
2015-01-25 21:05:03 +00:00
match [5, 5, 5] {
2013-11-28 20:22:53 +00:00
[.., a] => { }
}
2015-01-25 21:05:03 +00:00
match [5, 5, 5] {
2013-11-28 20:22:53 +00:00
[a, .., b] => { }
}
}