vxx2 / vlib / v / checker / tests / compile_error.out
14 lines · 14 sloc · 526 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1vlib/v/checker/tests/compile_error.vv:8:2: warning: On non Vinix this warning should be shown
2 6 |
3 7 | $if !vinix {
4 8 | $compile_warn('On non Vinix this warning should be shown')
5 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6 9 | }
7 10 |
8vlib/v/checker/tests/compile_error.vv:4:2: error: Only Serenity is supported
9 2 |
10 3 | $if !serenity {
11 4 | $compile_error('Only Serenity is supported')
12 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13 5 | }
14 6 |
15