mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 23:06:23 +00:00
7 lines
192 B
Rust
7 lines
192 B
Rust
|
// rust-intrinsic is unstable and not enabled, so it should not be suggested as a fix
|
||
|
extern "rust-intrinsec" fn rust_intrinsic() {} //~ ERROR invalid ABI
|
||
|
|
||
|
fn main() {
|
||
|
rust_intrinsic();
|
||
|
}
|