]> git.lizzy.rs Git - rust.git/blob - src/test/ui/reachable/expr_box.rs
Pin panic-in-drop=abort test to old pass manager
[rust.git] / src / test / ui / reachable / expr_box.rs
1 #![feature(box_syntax)]
2 #![allow(unused_variables)]
3 #![deny(unreachable_code)]
4
5 fn main() {
6     let x = box return; //~ ERROR unreachable
7     println!("hi");
8 }