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

12 lines
193 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
}
fn main() {}