]> git.proxmox.com Git - rustc.git/blob - src/test/ui/unique/unique-create.rs
New upstream version 1.38.0+dfsg1
[rustc.git] / src / test / ui / unique / unique-create.rs
1 // run-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 #![feature(box_syntax)]
6
7 pub fn main() {
8 let _: Box<_> = box 100;
9 }
10
11 fn vec() {
12 vec![0];
13 }