Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
assert_option_err.out
6
lines
·
6
sloc
·
309 bytes
·
e2e5cf8db56f3562c7baa735061690be936bdf3e
Raw
1
vlib/v/checker/tests/assert_option_err.vv:4:9: error: assert can be used only with `bool` expressions, but found `void` instead
2
2 |
3
3 | fn main() {
4
4 | assert os.truncate('testfile.txt', 6666) or { panic(err) }
5
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6
5 | }
7