]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/abi-typo.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / abi-typo.stderr
1 error[E0703]: invalid ABI: found `cdedl`
2   --> $DIR/abi-typo.rs:2:8
3    |
4 LL | extern "cdedl" fn cdedl() {}
5    |        ^^^^^^^
6    |        |
7    |        invalid ABI
8    |        help: did you mean: `"cdecl"`
9    |
10    = note: invoke `rustc --print=calling-conventions` for a full list of supported calling conventions.
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0703`.