mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-23 04:14:28 +00:00
9 lines
90 B
Rust
9 lines
90 B
Rust
#[unsafe(no_mangle)] //~ ERROR [E0658]
|
|
extern "C" fn foo() {
|
|
|
|
}
|
|
|
|
fn main() {
|
|
foo();
|
|
}
|