]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/reasons-erroneous.stderr
Rollup merge of #106113 - krasimirgg:llvm-16-ext-tyid, r=nikic
[rust.git] / tests / ui / lint / reasons-erroneous.stderr
1 error[E0452]: malformed lint attribute input
2   --> $DIR/reasons-erroneous.rs:3:58
3    |
4 LL | #![warn(absolute_paths_not_starting_with_crate, reason = 0)]
5    |                                                          ^ reason must be a string literal
6
7 error[E0452]: malformed lint attribute input
8   --> $DIR/reasons-erroneous.rs:8:40
9    |
10 LL | #![warn(anonymous_parameters, reason = b"consider these, for we have condemned them")]
11    |                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ reason must be a string literal
12
13 error[E0452]: malformed lint attribute input
14   --> $DIR/reasons-erroneous.rs:13:29
15    |
16 LL | #![warn(bare_trait_objects, reasons = "leaders to no sure land, guides their bearings lost")]
17    |                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
18
19 error[E0452]: malformed lint attribute input
20   --> $DIR/reasons-erroneous.rs:13:29
21    |
22 LL | #![warn(bare_trait_objects, reasons = "leaders to no sure land, guides their bearings lost")]
23    |                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
24
25 error[E0452]: malformed lint attribute input
26   --> $DIR/reasons-erroneous.rs:22:23
27    |
28 LL | #![warn(box_pointers, blerp = "or in league with robbers have reversed the signposts")]
29    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
30
31 error[E0452]: malformed lint attribute input
32   --> $DIR/reasons-erroneous.rs:22:23
33    |
34 LL | #![warn(box_pointers, blerp = "or in league with robbers have reversed the signposts")]
35    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
36
37 error[E0452]: malformed lint attribute input
38   --> $DIR/reasons-erroneous.rs:31:36
39    |
40 LL | #![warn(elided_lifetimes_in_paths, reason("disrespectful to ancestors", "irresponsible to heirs"))]
41    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
42
43 error[E0452]: malformed lint attribute input
44   --> $DIR/reasons-erroneous.rs:31:36
45    |
46 LL | #![warn(elided_lifetimes_in_paths, reason("disrespectful to ancestors", "irresponsible to heirs"))]
47    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
48
49 error[E0452]: malformed lint attribute input
50   --> $DIR/reasons-erroneous.rs:40:44
51    |
52 LL | #![warn(ellipsis_inclusive_range_patterns, reason = "born barren", reason = "a freak growth")]
53    |                                            ^^^^^^^^^^^^^^^^^^^^^^ reason in lint attribute must come last
54
55 error[E0452]: malformed lint attribute input
56   --> $DIR/reasons-erroneous.rs:45:25
57    |
58 LL | #![warn(keyword_idents, reason = "root in rubble", macro_use_extern_crate)]
59    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^ reason in lint attribute must come last
60
61 error[E0452]: malformed lint attribute input
62   --> $DIR/reasons-erroneous.rs:3:58
63    |
64 LL | #![warn(absolute_paths_not_starting_with_crate, reason = 0)]
65    |                                                          ^ reason must be a string literal
66
67 error[E0452]: malformed lint attribute input
68   --> $DIR/reasons-erroneous.rs:8:40
69    |
70 LL | #![warn(anonymous_parameters, reason = b"consider these, for we have condemned them")]
71    |                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ reason must be a string literal
72
73 error[E0452]: malformed lint attribute input
74   --> $DIR/reasons-erroneous.rs:13:29
75    |
76 LL | #![warn(bare_trait_objects, reasons = "leaders to no sure land, guides their bearings lost")]
77    |                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
78
79 error[E0452]: malformed lint attribute input
80   --> $DIR/reasons-erroneous.rs:13:29
81    |
82 LL | #![warn(bare_trait_objects, reasons = "leaders to no sure land, guides their bearings lost")]
83    |                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
84
85 error[E0452]: malformed lint attribute input
86   --> $DIR/reasons-erroneous.rs:22:23
87    |
88 LL | #![warn(box_pointers, blerp = "or in league with robbers have reversed the signposts")]
89    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
90
91 error[E0452]: malformed lint attribute input
92   --> $DIR/reasons-erroneous.rs:22:23
93    |
94 LL | #![warn(box_pointers, blerp = "or in league with robbers have reversed the signposts")]
95    |                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
96
97 error[E0452]: malformed lint attribute input
98   --> $DIR/reasons-erroneous.rs:31:36
99    |
100 LL | #![warn(elided_lifetimes_in_paths, reason("disrespectful to ancestors", "irresponsible to heirs"))]
101    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
102
103 error[E0452]: malformed lint attribute input
104   --> $DIR/reasons-erroneous.rs:31:36
105    |
106 LL | #![warn(elided_lifetimes_in_paths, reason("disrespectful to ancestors", "irresponsible to heirs"))]
107    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ bad attribute argument
108
109 error[E0452]: malformed lint attribute input
110   --> $DIR/reasons-erroneous.rs:40:44
111    |
112 LL | #![warn(ellipsis_inclusive_range_patterns, reason = "born barren", reason = "a freak growth")]
113    |                                            ^^^^^^^^^^^^^^^^^^^^^^ reason in lint attribute must come last
114
115 error[E0452]: malformed lint attribute input
116   --> $DIR/reasons-erroneous.rs:45:25
117    |
118 LL | #![warn(keyword_idents, reason = "root in rubble", macro_use_extern_crate)]
119    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^ reason in lint attribute must come last
120
121 warning: unknown lint: `reason`
122   --> $DIR/reasons-erroneous.rs:50:39
123    |
124 LL | #![warn(missing_copy_implementations, reason)]
125    |                                       ^^^^^^
126    |
127    = note: `#[warn(unknown_lints)]` on by default
128
129 error: aborting due to 20 previous errors; 1 warning emitted
130
131 For more information about this error, try `rustc --explain E0452`.