v2 / vlib / v / checker / tests / compile_error.vv
13 lines · 10 sloc · 200 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1module main
2
3$if !serenity {
4 $compile_error('Only Serenity is supported')
5}
6
7$if !vinix {
8 $compile_warn('On non Vinix this warning should be shown')
9}
10
11fn main() {
12 println('Hello from Serenity')
13}
14