]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/panic-safe.rs
Remove the in-tree `flate` crate
[rust.git] / src / test / run-pass / panic-safe.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![allow(dead_code)]
12
13 use std::panic::{UnwindSafe, AssertUnwindSafe};
14 use std::cell::RefCell;
15 use std::sync::{Mutex, RwLock, Arc};
16 use std::rc::Rc;
17
18 struct Foo { a: i32 }
19
20 fn assert<T: UnwindSafe + ?Sized>() {}
21
22 fn main() {
23     assert::<i32>();
24     assert::<&i32>();
25     assert::<*mut i32>();
26     assert::<*const i32>();
27     assert::<usize>();
28     assert::<str>();
29     assert::<&str>();
30     assert::<Foo>();
31     assert::<&Foo>();
32     assert::<Vec<i32>>();
33     assert::<String>();
34     assert::<RefCell<i32>>();
35     assert::<Box<i32>>();
36     assert::<Mutex<i32>>();
37     assert::<RwLock<i32>>();
38     assert::<&Mutex<i32>>();
39     assert::<&RwLock<i32>>();
40     assert::<Rc<i32>>();
41     assert::<Arc<i32>>();
42     assert::<Box<[u8]>>();
43
44     trait Trait: UnwindSafe {}
45     assert::<Box<Trait>>();
46
47     fn bar<T>() {
48         assert::<Mutex<T>>();
49         assert::<RwLock<T>>();
50     }
51     fn baz<T: UnwindSafe>() {
52         assert::<Box<T>>();
53         assert::<Vec<T>>();
54         assert::<RefCell<T>>();
55         assert::<AssertUnwindSafe<T>>();
56         assert::<&AssertUnwindSafe<T>>();
57         assert::<Rc<AssertUnwindSafe<T>>>();
58         assert::<Arc<AssertUnwindSafe<T>>>();
59     }
60 }