zig/test/cases/compile_errors/bogus_compile_var.zig
Wooster 35201e9d93 Sema: fix wording in error message
It's an FQN, not an actual file name.
2024-11-09 20:21:32 +00:00

12 lines
253 B
Zig

const x = @import("builtin").bogus;
export fn entry() usize {
return @sizeOf(@TypeOf(x));
}
// error
// backend=stage2
// target=native
//
// :1:29: error: root source file struct 'builtin' has no member named 'bogus'
// note: struct declared here