]> git.proxmox.com Git - rustc.git/blob - src/test/ui/drop/drop-on-empty-block-exit.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / drop / drop-on-empty-block-exit.rs
1 // run-pass
2 // pretty-expanded FIXME #23616
3 #![allow(non_camel_case_types)]
4
5 enum t { foo(Box<isize>), }
6
7 pub fn main() {
8 let tt = t::foo(Box::new(10));
9 match tt { t::foo(_z) => { } }
10 }