aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/checker/tests/if_expr_no_else.out
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/vlib/v/checker/tests/if_expr_no_else.out')
-rw-r--r--v_windows/v/vlib/v/checker/tests/if_expr_no_else.out5
1 files changed, 5 insertions, 0 deletions
diff --git a/v_windows/v/vlib/v/checker/tests/if_expr_no_else.out b/v_windows/v/vlib/v/checker/tests/if_expr_no_else.out
new file mode 100644
index 0000000..87fb3e7
--- /dev/null
+++ b/v_windows/v/vlib/v/checker/tests/if_expr_no_else.out
@@ -0,0 +1,5 @@
+vlib/v/checker/tests/if_expr_no_else.vv:2:9: error: `if` expression needs `else` clause
+ 1 | fn main() {
+ 2 | _ = if true { 1 }
+ | ~~
+ 3 | }