]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unique/unique-create.rs
Pin panic-in-drop=abort test to old pass manager
[rust.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 }