2022-05-13 08:00:20 +01:00
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace) noreturn {
|
|
|
|
_ = stack_trace;
|
2022-07-15 23:50:32 +01:00
|
|
|
if (std.mem.eql(u8, message, "left shift overflowed bits")) {
|
|
|
|
std.process.exit(0);
|
|
|
|
}
|
|
|
|
std.process.exit(1);
|
2022-05-13 08:00:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() !void {
|
|
|
|
const x = shl(0b0010111111111111, 3);
|
|
|
|
if (x == 0) return error.Whatever;
|
|
|
|
return error.TestFailed;
|
|
|
|
}
|
|
|
|
fn shl(a: u16, b: u4) u16 {
|
|
|
|
return @shlExact(a, b);
|
|
|
|
}
|
|
|
|
// run
|
2022-07-15 23:50:32 +01:00
|
|
|
// backend=llvm
|
|
|
|
// target=native
|