]> git.lizzy.rs Git - rust.git/blob - src/test/ui/empty/empty-attributes.stderr
Merge commit '8da837185714cefbb261e93e9846afb11c1dc60e' into sync-rustfmt-subtree
[rust.git] / src / test / ui / empty / empty-attributes.stderr
1 error: unused attribute
2   --> $DIR/empty-attributes.rs:8:1
3    |
4 LL | #[repr()]
5    | ^^^^^^^^^ help: remove this attribute
6    |
7 note: the lint level is defined here
8   --> $DIR/empty-attributes.rs:1:9
9    |
10 LL | #![deny(unused_attributes)]
11    |         ^^^^^^^^^^^^^^^^^
12    = note: attribute `repr` with an empty list has no effect
13
14 error: unused attribute
15   --> $DIR/empty-attributes.rs:11:1
16    |
17 LL | #[target_feature()]
18    | ^^^^^^^^^^^^^^^^^^^ help: remove this attribute
19    |
20    = note: attribute `target_feature` with an empty list has no effect
21
22 error: unused attribute
23   --> $DIR/empty-attributes.rs:2:1
24    |
25 LL | #![allow()]
26    | ^^^^^^^^^^^ help: remove this attribute
27    |
28    = note: attribute `allow` with an empty list has no effect
29
30 error: unused attribute
31   --> $DIR/empty-attributes.rs:3:1
32    |
33 LL | #![warn()]
34    | ^^^^^^^^^^ help: remove this attribute
35    |
36    = note: attribute `warn` with an empty list has no effect
37
38 error: unused attribute
39   --> $DIR/empty-attributes.rs:4:1
40    |
41 LL | #![deny()]
42    | ^^^^^^^^^^ help: remove this attribute
43    |
44    = note: attribute `deny` with an empty list has no effect
45
46 error: unused attribute
47   --> $DIR/empty-attributes.rs:5:1
48    |
49 LL | #![forbid()]
50    | ^^^^^^^^^^^^ help: remove this attribute
51    |
52    = note: attribute `forbid` with an empty list has no effect
53
54 error: unused attribute
55   --> $DIR/empty-attributes.rs:6:1
56    |
57 LL | #![feature()]
58    | ^^^^^^^^^^^^^ help: remove this attribute
59    |
60    = note: attribute `feature` with an empty list has no effect
61
62 error: aborting due to 7 previous errors
63