v/vlib/v/checker/tests/fn_check_for_matching_optio...

11 lines
100 B
V

struct Abc {
f fn (voidptr)
}
fn main() {
a := Abc{
f: fn (data voidptr) ? {}
}
println(a)
}