summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/warn-unused-inline-on-fn-prototypes.stderr
blob: ab19d80e7327c56a5cd84ceb511c379656def9da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: `#[inline]` is ignored on function prototypes
  --> $DIR/warn-unused-inline-on-fn-prototypes.rs:4:5
   |
LL |     #[inline]
   |     ^^^^^^^^^
   |
note: the lint level is defined here
  --> $DIR/warn-unused-inline-on-fn-prototypes.rs:1:9
   |
LL | #![deny(unused_attributes)]
   |         ^^^^^^^^^^^^^^^^^

error: `#[inline]` is ignored on function prototypes
  --> $DIR/warn-unused-inline-on-fn-prototypes.rs:9:5
   |
LL |     #[inline]
   |     ^^^^^^^^^

error: aborting due to 2 previous errors