rust-clippy/tests/ui/inline_fn_without_body.stderr

30 lines
897 B
Text
Raw Normal View History

error: use of `#[inline]` on trait method `default_inline` which has no body
--> $DIR/inline_fn_without_body.rs:5:5
2018-10-06 16:18:06 +00:00
|
2018-12-27 15:57:55 +00:00
LL | #[inline]
2018-10-06 16:18:06 +00:00
| _____-^^^^^^^^
2018-12-27 15:57:55 +00:00
LL | | fn default_inline();
2018-10-06 16:18:06 +00:00
| |____- 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
|
2018-12-27 15:57:55 +00:00
LL | #[inline(always)]
2018-12-10 05:27:19 +00:00
| _____-^^^^^^^^^^^^^^^^
2018-12-27 15:57:55 +00:00
LL | | fn always_inline();
2018-12-10 05:27:19 +00:00
| |____- help: remove
error: use of `#[inline]` on trait method `never_inline` which has no body
--> $DIR/inline_fn_without_body.rs:11:5
|
2018-12-27 15:57:55 +00:00
LL | #[inline(never)]
| _____-^^^^^^^^^^^^^^^
2018-12-27 15:57:55 +00:00
LL | | fn never_inline();
| |____- help: remove
error: aborting due to 3 previous errors