v2 / vlib / v / tests / consts / const_propagate_result_test.v
10 lines · 8 sloc · 135 bytes · 3a6b651fa4d275bc0f026f63ea101b5cf2abea6c
Raw
1const constant = 5
2const other = init_const(constant)!
3
4fn test_main() {
5 assert other == 5
6}
7
8fn init_const(c int) !int {
9 return c
10}
11