blob: a5b7bacec23b7cd4e12d2bb3117d3cd9d6a01040 [file] [log] [blame]
#![feature(box_syntax)]
pub fn main() { let x: Box<_> = { box 100 }; assert_eq!(*x, 100); }