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_result_type.vv

9 lines
77 B
V

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