summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/issue-103112.stderr
blob: 4ca7fdf9b5a2a585692830efc1b59064268f4f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0433]: failed to resolve: could not find `abort` in `process`
  --> $DIR/issue-103112.rs:2:19
   |
LL |     std::process::abort!();
   |                   ^^^^^ could not find `abort` in `process`
   |
help: std::process::abort is not a macro, but a function, try to remove `!`
   |
LL -     std::process::abort!();
LL +     std::process::abort();
   |

error: aborting due to previous error

For more information about this error, try `rustc --explain E0433`.