rustc/tests/ui/ffi-attrs/ffi_const2.rs
2024-07-31 08:40:13 +02:00

12 lines
195 B
Rust

#![feature(ffi_const, ffi_pure)]
extern "C" {
#[ffi_pure] //~ ERROR `#[ffi_const]` function cannot be `#[ffi_pure]`
#[ffi_const]
pub fn baz();
}
fn main() {
unsafe { baz() };
}