1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/builtin/int_test.v

12 lines
140 B
Go
Raw Normal View History

2019-08-04 10:16:44 +03:00
const (
a = 3
u = u64(1)
2019-08-04 10:16:44 +03:00
)
fn test_const() {
b := (true && true) || false
assert b == true
2019-08-04 10:16:44 +03:00
assert a == 3
assert u == u64(1)
2019-08-04 10:16:44 +03:00
}