mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* stdlib tests now check refc too * typo * fixes line numbers * disable cpp * do not touch
12 lines
290 B
Nim
12 lines
290 B
Nim
discard """
|
|
matrix: "--mm:refc; --mm:orc"
|
|
"""
|
|
|
|
import unittest, strutils
|
|
|
|
block: # parseutils
|
|
check: parseBiggestUInt("0") == 0'u64
|
|
check: parseBiggestUInt("18446744073709551615") == 0xFFFF_FFFF_FFFF_FFFF'u64
|
|
expect(ValueError):
|
|
discard parseBiggestUInt("18446744073709551616")
|