mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
433da1fc04
They pass fine.
9 lines
137 B
Rust
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);
|
|
}
|