vxx2 / vlib / v / checker / tests / struct_field_init_with_result_err.vv
11 lines · 9 sloc · 109 bytes · 68ba39084de202486c298e6be1c1ca981dcbca3c
Raw
1fn example() !int {
2 return 0
3}
4
5struct Example {
6 example int
7}
8
9fn main() {
10 println(Example{example()})
11}
12