summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/inline_fn_without_body.stderr
blob: 60f6eb8dff08287e6b7cd5657876ec7b3d52340b (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
error: use of `#[inline]` on trait method `default_inline` which has no body
  --> $DIR/inline_fn_without_body.rs:5:5
   |
LL |       #[inline]
   |  _____-^^^^^^^^
LL | |     fn default_inline();
   | |____- help: remove
   |
   = note: `-D clippy::inline-fn-without-body` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::inline_fn_without_body)]`

error: use of `#[inline]` on trait method `always_inline` which has no body
  --> $DIR/inline_fn_without_body.rs:8:5
   |
LL |       #[inline(always)]
   |  _____-^^^^^^^^^^^^^^^^
LL | |     fn always_inline();
   | |____- help: remove

error: use of `#[inline]` on trait method `never_inline` which has no body
  --> $DIR/inline_fn_without_body.rs:11:5
   |
LL |       #[inline(never)]
   |  _____-^^^^^^^^^^^^^^^
LL | |     fn never_inline();
   | |____- help: remove

error: aborting due to 3 previous errors