Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
struct_field_init_with_result_err.vv
11
lines
·
9
sloc
·
109 bytes
·
68ba39084de202486c298e6be1c1ca981dcbca3c
Raw
1
fn example() !int {
2
return 0
3
}
4
5
struct Example {
6
example int
7
}
8
9
fn main() {
10
println(Example{example()})
11
}
12