rust/src/test/ui/expr-block-unique.rs

4 lines
112 B
Rust

// run-pass
#![allow(unused_braces)]
pub fn main() { let x: Box<_> = { Box::new(100) }; assert_eq!(*x, 100); }