mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 03:07:24 +03:00
11 lines
195 B
Rust
11 lines
195 B
Rust
//@compile-flags: --test
|
|
//@check-pass
|
|
#![warn(clippy::missing_inline_in_public_items)]
|
|
|
|
#[expect(clippy::missing_inline_in_public_items)]
|
|
pub fn foo() -> u32 {
|
|
0
|
|
}
|
|
|
|
fn private_function() {}
|