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