mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
12 lines
356 B
Plaintext
12 lines
356 B
Plaintext
error: missing `#[inline]` for a function
|
|
--> tests/ui/missing_inline_executable.rs:3:1
|
|
|
|
|
LL | pub fn foo() {}
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::missing-inline-in-public-items` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::missing_inline_in_public_items)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|