2019-12-03 23:40:26 +01:00
|
|
|
module main
|
2019-12-07 20:25:19 +01:00
|
|
|
import forkedtest
|
2019-12-03 23:40:26 +01:00
|
|
|
|
|
|
|
const (
|
2019-12-07 20:25:19 +01:00
|
|
|
integer1 = 111
|
|
|
|
integer2 = 222
|
|
|
|
integer3 = integer1+integer2
|
|
|
|
integer9 = integer3 * 3
|
|
|
|
abc = "123"
|
2019-12-03 23:40:26 +01:00
|
|
|
)
|
|
|
|
|
2019-12-07 20:25:19 +01:00
|
|
|
fn check_const_initialization() {
|
|
|
|
assert abc == "123"
|
|
|
|
assert integer9 == 999
|
|
|
|
}
|
|
|
|
|
2019-12-03 23:40:26 +01:00
|
|
|
fn main(){
|
2019-12-07 20:25:19 +01:00
|
|
|
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
|
|
|
}
|