Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
c_function
/
code_test.c.v
10
lines
·
7
sloc
·
115 bytes
·
80477e3acfd13f169d1ed130190eb23c4b2b188f
Raw
1
module
main
2
3
#include
"@VMODROOT/code.c"
4
5
@[keep_args_alive]
6
fn
C.foo(arg [1]int)
7
8
fn
test_main() {
9
C.foo([1]!)
10
}
11