vxx2 / vlib / v / checker / tests / struct_voidptr_field_init_err.vv
13 lines · 11 sloc · 127 bytes · 76ae9dba5c1bdebf2d916972abcdc7fa1e12b3c1
Raw
1struct Example {
2 example voidptr
3}
4
5fn main() {
6 println(Example{
7 example: get()
8 })
9}
10
11fn get() string {
12 return 'hello'
13}
14