about summary refs log tree commit diff
path: root/src/test/ui/expr-block-unique.rs
blob: fe1a7d9f1fb319b411118faf04b26e51281c7981 (plain)
1
2
3
4
5
// run-pass

#![feature(box_syntax)]

pub fn main() { let x: Box<_> = { box 100 }; assert_eq!(*x, 100); }