Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
project_with_c_code
/
main1_test.v
11
lines
·
8
sloc
·
210 bytes
·
a87a4d73b9ab25cfff0822f4e94cf2a2d9e64323
Raw
1
// vtest retry: 3
2
import
v.tests.project_with_c_code.mod1
3
4
#include
"@DIR/relative.h"
5
6
fn
C.abc() i32
7
8
fn
test_using_c_code_in_the_same_module_works() {
9
assert 1003 == mod1.vadd(1, 2)
10
assert 142 == C.abc()
11
}
12