mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +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();
|
|
}
|