v2 / vlib / v / checker / tests / globals / redefine_main.out
5 lines · 5 sloc · 216 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1vlib/v/checker/tests/globals/redefine_main.vv:1:10: error: the `main` function is the program entry point, cannot redefine it
2 1 | __global main = fn () int {
3 | ~~~~
4 2 | return 22
5 3 | }
6