v/vlib/builtin/linux_bare/old/.checks/consts/consts.v

23 lines
375 B
V
Raw Normal View History

2019-12-03 23:40:26 +01:00
module main
import forkedtest
2019-12-03 23:40:26 +01:00
const (
integer1 = 111
integer2 = 222
integer3 = integer1+integer2
integer9 = integer3 * 3
abc = "123"
2019-12-03 23:40:26 +01:00
)
fn check_const_initialization() {
assert abc == "123"
assert integer9 == 999
}
2019-12-03 23:40:26 +01:00
fn main(){
mut fails := 0
fails += forkedtest.normal_run(check_const_initialization, "check_const_initialization")
assert fails == 0
sys_exit(0)
2019-12-03 23:40:26 +01:00
}