blob: 868b9509830b0d1e1124d00e8afbce6528e7157a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error[E0703]: invalid ABI: found `rust-cull`
--> $DIR/abi-typo-unstable.rs:5:8
|
LL | extern "rust-cull" fn rust_call(_: ()) {}
| ^^^^^^^^^^^ invalid ABI
|
= note: invoke `rustc --print=calling-conventions` for a full list of supported calling conventions
help: there's a similarly named valid ABI `rust-call`
|
LL - extern "rust-cull" fn rust_call(_: ()) {}
LL + extern "rust-call" fn rust_call(_: ()) {}
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0703`.
|