mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00
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();
|
|
}
|