]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/issue-103112.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / issue-103112.stderr
1 error[E0433]: failed to resolve: could not find `abort` in `process`
2   --> $DIR/issue-103112.rs:2:19
3    |
4 LL |     std::process::abort!();
5    |                   ^^^^^ could not find `abort` in `process`
6    |
7 help: std::process::abort is not a macro, but a function, try to remove `!`
8    |
9 LL -     std::process::abort!();
10 LL +     std::process::abort();
11    |
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0433`.