]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-3878.rs
Rollup merge of #106752 - sulami:master, r=estebank
[rust.git] / tests / ui / issues / issue-3878.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3
4 #![allow(path_statements)]
5
6 pub fn main() {
7     let y: Box<_> = Box::new(1);
8     y;
9 }