rust/tests/run-make/extern-multiple-copies2/bar.rs
2023-03-30 07:34:55 -05:00

9 lines
137 B
Rust

#[macro_use]
extern crate foo2; // foo2 first to exhibit the bug
#[macro_use]
extern crate foo1;
fn main() {
foo2::foo2(foo1::A);
}