mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* Revert "fixes #20285; prevent oid time overflow at year 2038"
This reverts commit dfcdb6ec2a.
* increase time to 64 bits and clean up
* add testcase
* inline consts
* add a changelog
* fixes #20285; prevent oid time overflow at year 2038
16 lines
205 B
Nim
16 lines
205 B
Nim
discard """
|
|
matrix: "--mm:refc; --mm:orc"
|
|
"""
|
|
|
|
import std/oids
|
|
|
|
|
|
block: # genOid
|
|
let x = genOid()
|
|
doAssert ($x).len == 32
|
|
|
|
block:
|
|
let x = genOid()
|
|
let y = parseOid(cstring($x))
|
|
doAssert x == y
|