2017-07-07 18:12:44 -05: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 22:01:00 -05:00
|
|
|
// ignore-wasm32-bare compiled as panic=abort by default
|
|
|
|
|
2017-07-07 18:12:44 -05:00
|
|
|
#![feature(generators, generator_trait)]
|
|
|
|
|
|
|
|
use std::ops::Generator;
|
|
|
|
use std::panic;
|
|
|
|
use std::sync::atomic::{AtomicUsize, ATOMIC_USIZE_INIT, Ordering};
|
|
|
|
|
|
|
|
static A: AtomicUsize = ATOMIC_USIZE_INIT;
|
|
|
|
|
|
|
|
struct B;
|
|
|
|
|
|
|
|
impl Drop for B {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
A.fetch_add(1, Ordering::SeqCst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-09 15:56:19 -05:00
|
|
|
fn bool_true() -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2017-07-07 18:12:44 -05:00
|
|
|
fn main() {
|
|
|
|
let b = B;
|
|
|
|
let mut foo = || {
|
2017-08-09 15:56:19 -05:00
|
|
|
if bool_true() {
|
2017-07-07 18:12:44 -05:00
|
|
|
panic!();
|
|
|
|
}
|
|
|
|
drop(b);
|
|
|
|
yield;
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(A.load(Ordering::SeqCst), 0);
|
|
|
|
let res = panic::catch_unwind(panic::AssertUnwindSafe(|| {
|
2017-07-11 14:57:05 -05:00
|
|
|
foo.resume()
|
2017-07-07 18:12:44 -05:00
|
|
|
}));
|
|
|
|
assert!(res.is_err());
|
|
|
|
assert_eq!(A.load(Ordering::SeqCst), 1);
|
|
|
|
|
|
|
|
let mut foo = || {
|
2017-08-09 15:56:19 -05:00
|
|
|
if bool_true() {
|
2017-07-07 18:12:44 -05:00
|
|
|
panic!();
|
|
|
|
}
|
|
|
|
drop(B);
|
|
|
|
yield;
|
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(A.load(Ordering::SeqCst), 1);
|
|
|
|
let res = panic::catch_unwind(panic::AssertUnwindSafe(|| {
|
2017-07-11 14:57:05 -05:00
|
|
|
foo.resume()
|
2017-07-07 18:12:44 -05:00
|
|
|
}));
|
|
|
|
assert!(res.is_err());
|
|
|
|
assert_eq!(A.load(Ordering::SeqCst), 1);
|
|
|
|
}
|