mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
7 lines
116 B
Rust
7 lines
116 B
Rust
#![warn(clippy::missing_inline_in_public_items)]
|
|
|
|
pub fn foo() {}
|
|
//~^ missing_inline_in_public_items
|
|
|
|
fn main() {}
|