1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/function_prototype_in_struct.vv

10 lines
78 B
V

module main
struct Ok {
alibaba fn (Ok, )
}
struct OkInt {
a fn (int, )
}