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