forked from rust-lang/rust-clippy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathborrow_box.rs
84 lines (64 loc) · 1.22 KB
/
borrow_box.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#![deny(borrowed_box)]
#![allow(blacklisted_name)]
#![allow(unused_variables)]
#![allow(dead_code)]
pub fn test1(foo: &mut Box<bool>) {
println!("{:?}", foo)
}
pub fn test2() {
let foo: &Box<bool>;
}
struct Test3<'a> {
foo: &'a Box<bool>
}
trait Test4 {
fn test4(a: &Box<bool>);
}
impl<'a> Test4 for Test3<'a> {
fn test4(a: &Box<bool>) {
unimplemented!();
}
}
use std::any::Any;
pub fn test5(foo: &mut Box<Any>) {
println!("{:?}", foo)
}
pub fn test6() {
let foo: &Box<Any>;
}
struct Test7<'a> {
foo: &'a Box<Any>
}
trait Test8 {
fn test8(a: &Box<Any>);
}
impl<'a> Test8 for Test7<'a> {
fn test8(a: &Box<Any>) {
unimplemented!();
}
}
pub fn test9(foo: &mut Box<Any + Send + Sync>) {
let _ = foo;
}
pub fn test10() {
let foo: &Box<Any + Send + 'static>;
}
struct Test11<'a> {
foo: &'a Box<Any + Send>
}
trait Test12 {
fn test4(a: &Box<Any + 'static>);
}
impl<'a> Test12 for Test11<'a> {
fn test4(a: &Box<Any + 'static>) {
unimplemented!();
}
}
fn main(){
test1(&mut Box::new(false));
test2();
test5(&mut (Box::new(false) as Box<Any>));
test6();
test9(&mut (Box::new(false) as Box<Any + Send + Sync>));
test10();
}