v/vlib/v/checker/tests/assert_optional_err.vv

6 lines
84 B
V

import os
fn main(){
assert os.truncate("testfile.txt", 6666) or { panic(err) }
}