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

// error
// backend=stage2
// target=native
//
// :1:20: error: use of undeclared identifier 'doesnt_exist'