mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
7 lines
309 B
Plaintext
7 lines
309 B
Plaintext
vlib/v/checker/tests/assert_optional_err.vv:4:9: error: assert can be used only with `bool` expressions, but found `void` instead
|
|
2 |
|
|
3 | fn main(){
|
|
4 | assert os.truncate("testfile.txt", 6666) or { panic(err) }
|
|
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
5 | }
|