v/vlib/v/checker/tests/store_string_err.vv

7 lines
89 B
V

fn return_err() ?int {
return error('')
}
err := return_err() or { err }
eprintln(err)