2024-09-23 18:46:23 +01:00
|
|
|
//@ compile-flags: --crate-type=lib
|
|
|
|
|
#![allow(internal_features)]
|
|
|
|
|
|
|
|
|
|
#[rustc_force_inline]
|
2025-02-13 15:10:49 +00:00
|
|
|
//~^ ERROR #[rustc_force_inline] forces a free function to be inlined
|
2024-09-23 18:46:23 +01:00
|
|
|
pub fn bare() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[rustc_force_inline = "the test requires it"]
|
2025-02-13 15:10:49 +00:00
|
|
|
//~^ ERROR #[rustc_force_inline] forces a free function to be inlined
|
2024-09-23 18:46:23 +01:00
|
|
|
pub fn justified() {
|
|
|
|
|
}
|