IC exposes typedesc implementation shenanigans (#17759)

* IC exposes typedesc implementation shenanigans; so I change system.default's definition to what it should have been to begin with
* Update lib/system.nim

Co-authored-by: Timothee Cour <timothee.cour2@gmail.com>
This commit is contained in:
Andreas Rumpf
2021-04-18 07:27:03 +02:00
committed by GitHub
parent c8b8cb8458
commit 7b6ab5109f
2 changed files with 16 additions and 1 deletions

View File

@@ -980,7 +980,7 @@ proc `@`* [IDX, T](a: sink array[IDX, T]): seq[T] {.magic: "ArrToSeq", noSideEff
## echo @a # => @[1, 3, 5]
## echo @b # => @['f', 'o', 'o']
proc default*(T: typedesc): T {.magic: "Default", noSideEffect.} =
proc default*[T](_: typedesc[T]): T {.magic: "Default", noSideEffect.} =
## returns the default value of the type `T`.
runnableExamples:
assert (int, float).default == (0, 0.0)

View File

@@ -0,0 +1,15 @@
discard """
output: '''yes'''
"""
echo "yes"
#!EDIT!#
discard """
output: '''yes2'''
"""
import std / [monotimes]
#discard getMonoTime()
echo "yes2"