v2 / vlib / v / checker / tests / if_expr_result_err.vv
9 lines · 8 sloc · 103 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1fn get_bool() !bool {
2 return true
3}
4
5fn main() {
6 if get_bool() {
7 println('Using plain lists')
8 }
9}
10