Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
codegen-units
/
partitioning
/
auxiliary
/
cgu_explicit_inlining.rs
blob: 4a3a63cc1b4adc16107dbcdb232b3f861bc6e57c [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"lib"
]
#[
inline
]
pub
fn
inlined
()
{}
#[
inline
(
always
)]
pub
fn
always_inlined
()
{}
#[
inline
(
never
)]
pub
fn
never_inlined
()
{}