rust/tests/ui/unique/expr-if-unique.rs
jyn 01b75e20f2 Move some UI tests into subdirectories
to avoid going over the existing limit now that the ui-fulldeps tests have
been moved to ui.
2023-04-02 19:42:30 -04:00

10 lines
212 B
Rust

// run-pass
// Tests for if as expressions returning boxed types
fn test_box() {
let rs: Box<_> = if true { Box::new(100) } else { Box::new(101) };
assert_eq!(*rs, 100);
}
pub fn main() { test_box(); }