tests: fix failed consts test (it now works properly)
parent
241a7b760d
commit
8ea576783b
|
@ -1,6 +1,6 @@
|
||||||
pub const (
|
pub const (
|
||||||
a = b
|
a = b
|
||||||
c = a + b
|
ccc = a + b
|
||||||
b = 1
|
b = 1
|
||||||
d = (e / 2) + 7
|
d = (e / 2) + 7
|
||||||
e = 9
|
e = 9
|
||||||
|
@ -9,9 +9,13 @@ pub const (
|
||||||
pub const x = 10
|
pub const x = 10
|
||||||
|
|
||||||
fn test_const() {
|
fn test_const() {
|
||||||
assert a == 1
|
|
||||||
assert d == 11
|
assert d == 11
|
||||||
assert c == 1
|
//
|
||||||
|
assert b == 1
|
||||||
|
assert a == 1
|
||||||
|
assert ccc == a + b
|
||||||
|
assert e == 9
|
||||||
|
assert d == (e / 2) + 7
|
||||||
}
|
}
|
||||||
|
|
||||||
// const optional test
|
// const optional test
|
||||||
|
|
Loading…
Reference in New Issue