Skip to content

Commit 4dce49d

Browse files
authored
checker: cleanup and move test files to tests directory (#22870)
1 parent c4fd61c commit 4dce49d

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

vlib/v/checker/or_block_assert_err.out

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
vlib/v/checker/tests/or_block_assert_err.vv:10:22: error: last statement in the `or {}` block should be an expression of type `int` or exit parent scope
2+
8 |
3+
9 | f() or { assert true }
4+
10 | a := f() or { assert true }
5+
| ~~~~~~
6+
11 | dump(a)
7+
12 | g(f() or { assert true })
8+
vlib/v/checker/tests/or_block_assert_err.vv:12:19: error: last statement in the `or {}` block should be an expression of type `int` or exit parent scope
9+
10 | a := f() or { assert true }
10+
11 | dump(a)
11+
12 | g(f() or { assert true })
12+
| ~~~~~~
File renamed without changes.

0 commit comments

Comments
 (0)