v2 / vlib / v / tests / project_issue_26873 / main.v
11 lines · 10 sloc · 273 bytes · 80536d68d80dee2617feadebd55c073fe349ac3e
Raw
1module main
2
3fn main() {
4 content := new_content('data')
5 assert content.@type == .block
6 assert temp_root().len > 0
7 assert project_root.len > 0
8 assert sum_type_count() == 2
9 assert make_options(path: project_root).path == project_root
10 assert header_comment_ok() == 1
11}
12