11 lines
113 B
Rust
11 lines
113 B
Rust
|
extern crate no_builtins;
|
||
|
|
||
|
#[no_mangle]
|
||
|
fn call_foo() {
|
||
|
no_builtins::foo();
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
call_foo();
|
||
|
}
|