7 lines
134 B
Rust
7 lines
134 B
Rust
// run-pass
|
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
#![feature(box_syntax)]
|
|
|
|
pub fn main() { let _quux: Box<Vec<usize>> = box Vec::new(); }
|