aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/simple/issue_7030.zig
blob: 021567751686c6db6ff1a2fbcbba50d074e99328 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.", .{});
}