Commit 571f3ed161

Andrew Kelley <andrew@ziglang.org>
2020-03-11 23:45:09
fix stray warn() in runtime safety test
1 parent 51c6bb9
Changed files (1)
test/runtime_safety.zig
@@ -4,7 +4,6 @@ pub fn addCases(cases: *tests.CompareOutputContext) void {
     cases.addRuntimeSafety("shift left by huge amount",
         \\const std = @import("std");
         \\pub fn panic(message: []const u8, stack_trace: ?*@import("builtin").StackTrace) noreturn {
-        \\    std.debug.warn("{}\n", .{message});
         \\    if (std.mem.eql(u8, message, "shift amount is greater than the type size")) {
         \\        std.process.exit(126); // good
         \\    }