| 1 | vlib/v/checker/tests/comptime_env/using_comptime_env.vv:1:1: error: the environment variable "VAR" does not exist. |
| 2 | 1 | #flag -I $env('VAR')/xyz |
| 3 | | ~~~~~~~~~~~~~~~~~~~~~~~~ |
| 4 | 2 | #include "$env('VAR')/stdio.h" |
| 5 | 3 | |
| 6 | vlib/v/checker/tests/comptime_env/using_comptime_env.vv:2:1: error: the environment variable "VAR" does not exist. |
| 7 | 1 | #flag -I $env('VAR')/xyz |
| 8 | 2 | #include "$env('VAR')/stdio.h" |
| 9 | | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 10 | 3 | |
| 11 | 4 | fn main() { |
| 12 |