]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/panic-safe.rs
New upstream version 1.19.0+dfsg1
[rustc.git] / src / test / run-pass / panic-safe.rs
CommitLineData
9cc50fc6
SL
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)]
9cc50fc6 12
54a0048b 13use std::panic::{UnwindSafe, AssertUnwindSafe};
9cc50fc6
SL
14use std::cell::RefCell;
15use std::sync::{Mutex, RwLock, Arc};
16use std::rc::Rc;
17
18struct Foo { a: i32 }
19
54a0048b 20fn assert<T: UnwindSafe + ?Sized>() {}
9cc50fc6
SL
21
22fn 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>>();
5bcae85e
SL
38 assert::<&Mutex<i32>>();
39 assert::<&RwLock<i32>>();
9cc50fc6
SL
40 assert::<Rc<i32>>();
41 assert::<Arc<i32>>();
32a655c1
SL
42 assert::<Box<[u8]>>();
43
44 trait Trait: UnwindSafe {}
45 assert::<Box<Trait>>();
9cc50fc6
SL
46
47 fn bar<T>() {
48 assert::<Mutex<T>>();
49 assert::<RwLock<T>>();
50 }
54a0048b 51 fn baz<T: UnwindSafe>() {
9cc50fc6
SL
52 assert::<Box<T>>();
53 assert::<Vec<T>>();
54 assert::<RefCell<T>>();
54a0048b
SL
55 assert::<AssertUnwindSafe<T>>();
56 assert::<&AssertUnwindSafe<T>>();
57 assert::<Rc<AssertUnwindSafe<T>>>();
58 assert::<Arc<AssertUnwindSafe<T>>>();
9cc50fc6
SL
59 }
60}