10 lines
93 B
Rust
10 lines
93 B
Rust
extern "C" {
|
|
fn static2() -> i32;
|
|
}
|
|
|
|
fn main() {
|
|
unsafe {
|
|
static2();
|
|
}
|
|
}
|