about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/mixed_attributes_style.stderr
blob: abdc2df23cf120eb14522d3c8f42b65ff84a3aae (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
error: item has both inner and outer attributes
  --> tests/ui/mixed_attributes_style.rs:10:1
   |
LL | / #[allow(unused)]
LL | | fn foo1() {
LL | |     #![allow(unused)]
   | |_____________________^
   |
   = note: `-D clippy::mixed-attributes-style` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::mixed_attributes_style)]`

error: item has both inner and outer attributes
  --> tests/ui/mixed_attributes_style.rs:24:1
   |
LL | / /// linux
LL | |
LL | | fn foo4() {
LL | |     //! windows
   | |_______________^

error: item has both inner and outer attributes
  --> tests/ui/mixed_attributes_style.rs:39:1
   |
LL | / #[allow(unused)]
LL | | mod bar {
LL | |     #![allow(unused)]
   | |_____________________^

error: item has both inner and outer attributes
  --> tests/ui/mixed_attributes_style.rs:69:9
   |
LL | /         #[allow(dead_code)]
LL | |         mod inner_mod {
LL | |             #![allow(dead_code)]
   | |________________________________^

error: item has both inner and outer attributes
  --> tests/ui/mixed_attributes_style.rs:80:9
   |
LL | /         #[allow(dead_code)]
LL | |         mod inner_mod {
LL | |             #![allow(dead_code)]
   | |________________________________^

error: item has both inner and outer attributes
  --> tests/ui/mixed_attributes_style.rs:85:5
   |
LL | /     /// Nested mod
LL | |
LL | |     #[allow(unused)]
LL | |     mod nest_mod_2 {
LL | |         #![allow(unused)]
   | |_________________________^

error: item has both inner and outer attributes
  --> tests/ui/mixed_attributes_style.rs:91:9
   |
LL | /         #[allow(dead_code)]
LL | |         mod inner_mod {
LL | |             #![allow(dead_code)]
   | |________________________________^

error: aborting due to 7 previous errors