aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/invalid_field_access_in_comptime.zig
blob: 5dd4fec2c91248144812c3cc749648dffb2d30f2 (plain)
1
2
3
4
5
6
7
8
comptime {
    var x = doesnt_exist.whatever;
    _ = x;
}

// error
//
// :2:13: error: use of undeclared identifier 'doesnt_exist'