unwrapError
Function parameters
Parameters
- err:anyerror
Prints the message to stderr without a newline and then traps.
Functions
- call
- Prints the message to stderr without a newline and then traps.
Source
Implementation
pub fn unwrapError(err: anyerror) noreturn {
_ = &err;
call("attempt to unwrap error", null);
}