mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
433da1fc04
They pass fine.
8 lines
150 B
Rust
8 lines
150 B
Rust
extern crate instance_provider_a;
|
|
extern crate instance_provider_b;
|
|
|
|
pub fn foo() {
|
|
instance_provider_a::foo();
|
|
instance_provider_b::foo();
|
|
}
|