]> git.lizzy.rs Git - rust.git/blob - tests/run-pass-valgrind/coerce-match-calls.rs
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / 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 }