Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
comptime_insert_err.vv
10
lines
·
7
sloc
·
260 bytes
·
006df5845193d2e42a2b81f917bb9a215b729d5a
Raw
1
// The following file exists, so there should not be a checker error for it:
2
#insert "@VEXEROOT/vlib/v/checker/tests/comptime_insert_err.cc"
3
4
// some more comments
5
6
#insert "@VEXEROOT/vlib/v/checker/tests/Non_Existant_File.cc"
7
8
fn main() {
9
println('hello')
10
}
11