v2 / vlib / v / tests / test_global_init_test.v
10 lines · 8 sloc · 103 bytes · 4422662b0733fd01ba67ef58a216164ff2bda958
Raw
1const x = my_init()
2
3fn my_init() int {
4 assert true
5 return 1
6}
7
8fn test_my_init() {
9 assert x == 1
10}
11