2017-07-07 16:12:44 -07:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-10-22 20:01:00 -07:00
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
|
|
|
|
2017-07-07 16:12:44 -07:00
|
|
|
#![feature(generators, generator_trait)]
|
|
|
|
|
|
|
|
use std::ops::Generator;
|
|
|
|
use std::panic;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let mut foo = || {
|
|
|
|
if true {
|
|
|
|
panic!();
|
|
|
|
}
|
|
|
|
yield;
|
|
|
|
};
|
|
|
|
|
|
|
|
let res = panic::catch_unwind(panic::AssertUnwindSafe(|| {
|
2018-03-20 00:48:41 +01:00
|
|
|
unsafe { foo.resume() }
|
2017-07-07 16:12:44 -07:00
|
|
|
}));
|
|
|
|
assert!(res.is_err());
|
|
|
|
|
|
|
|
for _ in 0..10 {
|
|
|
|
let res = panic::catch_unwind(panic::AssertUnwindSafe(|| {
|
2018-03-20 00:48:41 +01:00
|
|
|
unsafe { foo.resume() }
|
2017-07-07 16:12:44 -07:00
|
|
|
}));
|
|
|
|
assert!(res.is_err());
|
|
|
|
}
|
|
|
|
}
|