Sign in
fuchsia
/
third_party
/
rust
/
e356279bdfe6840236877b298f0c577e0f9221ff
/
.
/
tests
/
ui
/
imports
/
extern-prelude-extern-crate-absolute-expanded.rs
blob: c3ad9c42ac3a7106f4fcdb83f1c4945d80c4e96c [
file
] [
log
] [
blame
]
//@ build-pass (FIXME(62277): could be check-pass?)
//@ edition:2018
macro_rules
!
define_iso
{
()
=>
{
extern
crate std
as
iso
;
}}
::
iso
::
thread_local
!
{
static
S
:
u8
=
0
;
}
define_iso
!();
fn
main
()
{
let
s
=
S
;
}