blob: a121f0ba878efcf7be52cf1da7f658f2cb999aca [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
#![allow(path_statements)]
#![feature(box_syntax)]
pub fn main() {
let y: Box<_> = box 1;
y;
}