]> git.lizzy.rs Git - rust.git/blob - tests/run-make-fulldeps/extern-multiple-copies2/bar.rs
Rollup merge of #106470 - ehuss:tidy-no-wasm, r=Mark-Simulacrum
[rust.git] / tests / run-make-fulldeps / extern-multiple-copies2 / bar.rs
1 #[macro_use]
2 extern crate foo2; // foo2 first to exhibit the bug
3 #[macro_use]
4 extern crate foo1;
5
6 fn main() {
7     foo2::foo2(foo1::A);
8 }