]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass-valgrind/coerce-match-calls.rs
Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup
[rust.git] / src / test / run-pass-valgrind / coerce-match-calls.rs
1 // Check that coercions are propagated through match and if expressions.
2
3 // pretty-expanded FIXME #23616
4
5 use std::boxed::Box;
6
7 pub fn main() {
8     let _: Box<[isize]> = if true { Box::new([1, 2, 3]) } else { Box::new([1]) };
9
10     let _: Box<[isize]> = match true { true => Box::new([1, 2, 3]), false => Box::new([1]) };
11
12     // Check we don't get over-keen at propagating coercions in the case of casts.
13     let x = if true { 42 } else { 42u8 } as u16;
14     let x = match true { true => 42, false => 42u8 } as u16;
15 }