Files
Nim/tests/stdlib/tsince.nim
hlaaftana fbc97e712a move since from inclrtl to std/private/since (#14188)
* move since from inclrtl to std/private/since
* move since import in system below for HCR
2020-05-02 23:51:59 +02:00

33 lines
665 B
Nim

import std/private/since
proc fun1(): int {.since: (1, 3).} = 12
proc fun1Bad(): int {.since: (99, 3).} = 12
proc fun2(): int {.since: (1, 3, 1).} = 12
proc fun2Bad(): int {.since: (99, 3, 1).} = 12
doAssert fun1() == 12
doAssert declared(fun1)
doAssert not declared(fun1Bad)
doAssert fun2() == 12
doAssert declared(fun2)
doAssert not declared(fun2Bad)
var ok = false
since (1, 3):
ok = true
doAssert ok
ok = false
since (1, 3, 1):
ok = true
doAssert ok
since (99, 3):
doAssert false
when false:
# pending https://github.com/timotheecour/Nim/issues/129
# Error: cannot attach a custom pragma to 'fun3'
template fun3(): int {.since: (1, 3).} = 12