Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
ffi-attrs
/
ffi_const2.rs
blob: 82fe8a9c91dd1f79ed8b5adea216497164c7de58 [
file
] [
log
] [
blame
] [
edit
]
#![
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
()
};
}