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

9 lines
78 B
V

struct Foo {
foo fn () ? [required]
}
fn main() {
f := Foo{}
println(f)
}