rust/src/test/ui/feature-gates/feature-gate-naked_functions.rs

10 lines
179 B
Rust
Raw Normal View History

#[naked]
//~^ the `#[naked]` attribute is an experimental feature
fn naked() {}
#[naked]
//~^ the `#[naked]` attribute is an experimental feature
fn naked_2() -> isize {
0
}