Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
test
cases
compile_errors
invalid_field_access_in_comptime.zig
pretty
plain
permalink
blame
history
•
8 lines
•
133 B
1
comptime {
2
var x = doesnt_exist.whatever;
3
_ = x;
4
}
5
6
// error
7
//
8
// :2:13: error: use of undeclared identifier 'doesnt_exist'