]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unique/unique-create.rs
Rollup merge of #88436 - lf-:stabilize-command-access, r=yaahc
[rust.git] / src / test / ui / unique / unique-create.rs
1 // run-pass
2 #![allow(dead_code)]
3 // pretty-expanded FIXME #23616
4
5 pub fn main() {
6     let _: Box<_> = Box::new(100);
7 }
8
9 fn vec() {
10     vec![0];
11 }