]> git.lizzy.rs Git - rust.git/blob - src/test/run-fail/unwind-interleaved.rs
Use better bound names in `-Zverbose` mode
[rust.git] / src / test / run-fail / unwind-interleaved.rs
1 // error-pattern:fail
2
3 fn a() {}
4
5 fn b() {
6     panic!();
7 }
8
9 fn main() {
10     let _x = vec![0];
11     a();
12     let _y = vec![0];
13     b();
14 }