Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
feature-gates
/
feature-gate-native_link_modifiers_verbatim.rs
blob: 042ce0b3f65b2488de2b52996e0c32381bc4322b [
file
] [
log
] [
blame
]
#![
allow
(
incomplete_features
)]
#![
feature
(
native_link_modifiers
)]
#[
link
(
name
=
"foo"
,
modifiers
=
"+verbatim"
)]
//~^ ERROR: `#[link(modifiers="verbatim")]` is unstable
extern
"C"
{}
fn
main
()
{}