mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-18 10:38:11 +00:00
9 lines
105 B
Rust
9 lines
105 B
Rust
![]() |
#![crate_type = "rlib"]
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate foo1;
|
||
|
|
||
|
pub fn foo2(a: foo1::A) {
|
||
|
foo1::foo1(a);
|
||
|
}
|