Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
consts
/
const_propagate_result_test.v
10
lines
·
8
sloc
·
135 bytes
·
3a6b651fa4d275bc0f026f63ea101b5cf2abea6c
Raw
1
const
constant = 5
2
const
other = init_const(constant)!
3
4
fn
test_main() {
5
assert other == 5
6
}
7
8
fn
init_const(c int) !int {
9
return
c
10
}
11