Commit bb4f4c043e

Tadeo Kondrak <me@tadeo.ca>
2021-02-10 07:44:33
test/cli.zig: Remove inline from panic function in testGodboltApi
Might add another line to stack traces there.
1 parent bcc1359
Changed files (1)
test
test/cli.zig
@@ -113,7 +113,7 @@ fn testGodboltApi(zig_exe: []const u8, dir_path: []const u8) anyerror!void {
         \\    return num * num;
         \\}
         \\extern fn zig_panic() noreturn;
-        \\pub fn panic(msg: []const u8, error_return_trace: ?*@import("builtin").StackTrace) callconv(.Inline) noreturn {
+        \\pub fn panic(msg: []const u8, error_return_trace: ?*@import("builtin").StackTrace) noreturn {
         \\    zig_panic();
         \\}
     );