summary refs log blame commit diff stats
path: root/tests/lexer/tintegerliterals.nim
blob: 7420db144d95e12df7c6aa930cacc0b0187aae0a (plain) (tree)
1
2
3
4
5
6
7
8
9








                              
# test the valid literals
assert 0b10 == 2
assert 0B10 == 2
assert 0x10 == 16
assert 0X10 == 16
assert 0o10 == 8
# the following is deprecated:
assert 0c10 == 8
assert 0C10 == 8