Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
struct_voidptr_field_init_err.vv
13
lines
·
11
sloc
·
127 bytes
·
76ae9dba5c1bdebf2d916972abcdc7fa1e12b3c1
Raw
1
struct Example {
2
example voidptr
3
}
4
5
fn main() {
6
println(Example{
7
example: get()
8
})
9
}
10
11
fn get() string {
12
return 'hello'
13
}
14