Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
test_global_init_test.v
10
lines
·
8
sloc
·
103 bytes
·
4422662b0733fd01ba67ef58a216164ff2bda958
Raw
1
const
x = my_init()
2
3
fn
my_init() int {
4
assert
true
5
return
1
6
}
7
8
fn
test_my_init() {
9
assert x == 1
10
}
11