v2 / vlib / v / tests / c_function / code_test.c.v
10 lines · 7 sloc · 115 bytes · 80477e3acfd13f169d1ed130190eb23c4b2b188f
Raw
1module main
2
3#include "@VMODROOT/code.c"
4
5@[keep_args_alive]
6fn C.foo(arg [1]int)
7
8fn test_main() {
9 C.foo([1]!)
10}
11