Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
c937122a6a0ab68a201c32adcacd4d784a327595
/
.
/
crates
/
linkme
/
tests
/
ui
/
attempted_coercion.rs
blob: 96a25111dd8d9b1925fa24a79d2864696e7c11ae [
file
] [
log
] [
blame
]
#![
cfg_attr
(
feature
=
"used_linker"
,
feature
(
used_with_arg
))]
use
linkme
::
distributed_slice
;
#[
distributed_slice
]
pub
static
SLICE
:
[&
'
static
str
];
#[
distributed_slice
(
SLICE
)]
static
ELEMENT
:
&&
str
=
&
"uhoh"
;
fn
main
()
{}