summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-3878.rs
blob: a121f0ba878efcf7be52cf1da7f658f2cb999aca (plain)
1
2
3
4
5
6
7
8
9
10
// run-pass
// pretty-expanded FIXME #23616

#![allow(path_statements)]
#![feature(box_syntax)]

pub fn main() {
    let y: Box<_> = box 1;
    y;
}