Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
ffi_const2.rs
blob: 82fe8a9c91dd1f79ed8b5adea216497164c7de58 [
file
] [
log
] [
blame
]
#![
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
()
};
}