#What exactly does it mean to have a pointer to a `comptime` object?
1 messages · Page 1 of 1 (latest)
1 messages · Page 1 of 1 (latest)
const std = @import("std");
test {
const foo = comptime [_]u8{ 1, 2, 3, };
std.debug.print("\n{*}\n", .{ &foo }); // ???
}