Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
eii
/
static
/
multiple_decls.rs
blob: 791e2725087f11c9c22749ba337e54516b90f00e [
file
] [
edit
]
#![
feature
(
extern_item_impls
)]
const
A
:
()
=
();
#[
eii
(
A
)]
static
A
:
u64
;
//~^ ERROR the name `A` is defined multiple times
//~| ERROR expected function or static, found constant `A`
#[
A
]
static
A_IMPL
:
u64
=
5
;
fn
main
()
{}