v2 / vlib / v / checker / tests / comptime_env / using_comptime_env.run.out
11 lines · 11 sloc · 483 bytes · 6a7ef4f5b2bba2a210839e1be1a2bb926938af5c
Raw
1vlib/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 |
6vlib/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