Prints the message to stderr without a newline and then traps.
Explicit calls to @panic lower to calling this function.
pub fn call(msg: []const u8, ra: ?usize) noreturn
pub fn call(msg: []const u8, ra: ?usize) noreturn {
@branchHint(.cold);
_ = ra;
const stderr_writer = &std.debug.lockStderr(&.{}).file_writer.interface;
stderr_writer.writeAll(msg) catch {};
@trap();
}