rust/tests/ui/inline_fn_without_body.stderr
2018-12-28 12:41:12 +01:00

28 lines
815 B
Text

error: use of `#[inline]` on trait method `default_inline` which has no body
--> $DIR/inline_fn_without_body.rs:14:5
|
LL | #[inline]
| _____-^^^^^^^^
LL | | fn default_inline();
| |____- help: remove
|
= note: `-D clippy::inline-fn-without-body` implied by `-D warnings`
error: use of `#[inline]` on trait method `always_inline` which has no body
--> $DIR/inline_fn_without_body.rs:17: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:20:5
|
LL | #[inline(never)]
| _____-^^^^^^^^^^^^^^^
LL | | fn never_inline();
| |____- help: remove
error: aborting due to 3 previous errors