rust/tests/ui/inline_fn_without_body.stderr

27 lines
787 B
Plaintext
Raw Normal View History

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