summary refs log tree commit diff
path: root/src/test/ui/expr-block-unique.rs
blob: eff3fd3a15152a78e55d7d38d381d9c037de1ec1 (plain)
1
2
3
4
5
// run-pass
#![allow(unused_braces)]
#![feature(box_syntax)]

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