blob: b644eff920d67b84209de2db152f31c7ee0b407a [file]
error[E0433]: cannot 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 1 previous error
For more information about this error, try `rustc --explain E0433`.