v2 / vlib / v / tests / fns / closure_option_direct_call_test.v
8 lines · 8 sloc · 159 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn test_closure_option_direct_call() {
2 tmp_wd := 'aaa'
3 b := fn [tmp_wd] () !string {
4 return tmp_wd
5 }() or { panic(err) }
6 println(b)
7 assert b == 'aaa'
8}
9