summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/functions.stderr
blob: 4b06cd0388990d4024a526b67746076a6f708350 (plain)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
error: this function has too many arguments (8/7)
  --> $DIR/functions.rs:8:1
   |
LL | fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::too-many-arguments` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::too_many_arguments)]`

error: this function has too many arguments (8/7)
  --> $DIR/functions.rs:13:1
   |
LL | / fn bad_multiline(
LL | |
LL | |     one: u32,
LL | |     two: u32,
...  |
LL | |     eight: ()
LL | | ) {
   | |_^

error: this function has too many arguments (8/7)
  --> $DIR/functions.rs:48:5
   |
LL |     fn bad(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: this function has too many arguments (8/7)
  --> $DIR/functions.rs:58:5
   |
LL |     fn bad_method(_one: u32, _two: u32, _three: &str, _four: bool, _five: f32, _six: f32, _seven: bool, _eight: ()) {}
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:68:34
   |
LL |         println!("{}", unsafe { *p });
   |                                  ^
   |
   = note: `-D clippy::not-unsafe-ptr-arg-deref` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::not_unsafe_ptr_arg_deref)]`

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:71:35
   |
LL |         println!("{:?}", unsafe { p.as_ref() });
   |                                   ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:73:33
   |
LL |         unsafe { std::ptr::read(p) };
   |                                 ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:85:30
   |
LL |     println!("{}", unsafe { *p });
   |                              ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:87:31
   |
LL |     println!("{:?}", unsafe { p.as_ref() });
   |                               ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:89:29
   |
LL |     unsafe { std::ptr::read(p) };
   |                             ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:96:30
   |
LL |     println!("{}", unsafe { *p });
   |                              ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:98:31
   |
LL |     println!("{:?}", unsafe { p.as_ref() });
   |                               ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:100:29
   |
LL |     unsafe { std::ptr::read(p) };
   |                             ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:110:34
   |
LL |         println!("{}", unsafe { *p });
   |                                  ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:112:35
   |
LL |         println!("{:?}", unsafe { p.as_ref() });
   |                                   ^

error: this public function might dereference a raw pointer but is not marked `unsafe`
  --> $DIR/functions.rs:114:33
   |
LL |         unsafe { std::ptr::read(p) };
   |                                 ^

error: aborting due to 16 previous errors