Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
433da1fc047bb39a263eefca4bdb2b1972f1d2ce
/
.
/
tests
/
run-make
/
extern-multiple-copies2
/
bar.rs
blob: b3088152d6ab831771fe2b7f4df0ae70f9079a44 [
file
] [
log
] [
blame
]
#[
macro_use
]
extern
crate foo2
;
// foo2 first to exhibit the bug
#[
macro_use
]
extern
crate foo1
;
fn
main
()
{
foo2
::
foo2
(
foo1
::
A
);
}