zig/test/standalone/simple/issue_7030.zig
Ali Cheraghi dec1163fbb
all: replace all @Type usages
Co-authored-by: Matthew Lugg <mlugg@mlugg.co.uk>
2025-11-22 22:42:38 +00:00

21 lines
408 B
Zig

const std = @import("std");
pub const std_options: std.Options = .{
.logFn = log,
};
pub fn log(
comptime message_level: std.log.Level,
comptime scope: @EnumLiteral(),
comptime format: []const u8,
args: anytype,
) void {
_ = message_level;
_ = scope;
_ = format;
_ = args;
}
pub fn main() anyerror!void {
std.log.info("All your codebase are belong to us.", .{});
}