Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
ffi-attrs
/
ffi_const2.rs
blob: 8a8de13b1530b6a59ce40f849a571643cff37306 [
file
] [
log
] [
blame
]
#![
feature
(
ffi_const
,
ffi_pure
)]
extern
"C"
{
#[
unsafe
(
ffi_pure
)]
//~ ERROR `#[ffi_const]` function cannot be `#[ffi_pure]`
#[
unsafe
(
ffi_const
)]
pub
fn
baz
();
}
fn
main
()
{
unsafe
{
baz
()
};
}