Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
feature-gates
/
feature-gate-extern-item-impls.rs
blob: f70ece554a09683dec5c6af54d621795adbc8d3a [
file
] [
log
] [
blame
] [
edit
]
#![
crate_type
=
"rlib"
]
#[
eii
]
//~ ERROR use of unstable library feature `extern_item_impls`
fn
hello
(
x
:
u64
);
#[
hello
]
fn
hello_impl
(
x
:
u64
)
{
println
!(
"{x:?}"
)
}