Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
imports
/
multiple-extern-by-macro-for-custom.rs
blob: 6bf544566e301375e87547a70d01df21ec9939fb [
file
] [
log
] [
blame
]
//@ edition: 2021
//@ aux-build: empty.rs
// issue#128813
extern
crate empty
;
macro_rules
!
m
{
()
=>
{
extern
crate std
as
empty
;
//~^ ERROR: the name `empty` is defined multiple times
};
}
m
!();
fn
main
()
{
use
::
empty
;
}