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