Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-ffi_const.rs
blob: 9f3d783ccd69cbbdc2c56b2ae738f806e5f21cf2 [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"lib"
]
extern
"C"
{
#[
ffi_const
]
//~ ERROR the `#[ffi_const]` attribute is an experimental feature
pub
fn
foo
();
}