// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![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); } } fn main() { let b = B; let mut foo = || { if true { panic!(); } drop(b); yield; }; assert_eq!(A.load(Ordering::SeqCst), 0); let res = panic::catch_unwind(panic::AssertUnwindSafe(|| { foo.resume(()) })); assert!(res.is_err()); assert_eq!(A.load(Ordering::SeqCst), 1); let mut foo = || { if true { panic!(); } drop(B); yield; }; assert_eq!(A.load(Ordering::SeqCst), 1); let res = panic::catch_unwind(panic::AssertUnwindSafe(|| { foo.resume(()) })); assert!(res.is_err()); assert_eq!(A.load(Ordering::SeqCst), 1); }