rust/src/test/ui/issues/issue-3878.rs
2019-07-27 18:56:16 +03:00

11 lines
149 B
Rust

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