mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 05:27:36 +00:00
13 lines
319 B
Rust
13 lines
319 B
Rust
![]() |
//@ compile-flags: --crate-type=lib
|
||
|
#![allow(internal_features)]
|
||
|
|
||
|
#[rustc_force_inline]
|
||
|
//~^ ERROR #![rustc_force_inline] forces a free function to be inlined
|
||
|
pub fn bare() {
|
||
|
}
|
||
|
|
||
|
#[rustc_force_inline = "the test requires it"]
|
||
|
//~^ ERROR #![rustc_force_inline] forces a free function to be inlined
|
||
|
pub fn justified() {
|
||
|
}
|