| 1 | vlib/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 | |
| 8 | vlib/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 |