1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/tests/const_test.v
2020-04-12 01:41:26 +02:00

14 lines
130 B
V

pub const (
a = b
c = a + b
b = 1
d = (e / 2) + 7
e = 9
)
fn test_const() {
assert a == 1
assert d == 11
assert c == 1
}