v2 / vlib / v / checker / tests / global_const_call_init_err.vv
12 lines · 9 sloc · 133 bytes · ec451e67020f5bb2732fb69cd674827b95a934cd
Raw
1@[has_globals]
2module main
3
4fn make_value() int {
5 return 123
6}
7
8__global const bad = make_value()
9
10fn main() {
11 assert bad == 123
12}
13