diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-04-18 07:27:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-18 07:27:03 +0200 |
commit | 7b6ab5109fe76afefbf5744b5f9f534e86d94629 (patch) | |
tree | bc7560e7f05928eecc7e18dfe72208ad412e7272 /lib/system.nim | |
parent | c8b8cb8458cf0aa5a33e9a94209ee1cb6df7646c (diff) | |
download | Nim-7b6ab5109fe76afefbf5744b5f9f534e86d94629.tar.gz |
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>
Diffstat (limited to 'lib/system.nim')
-rw-r--r-- | lib/system.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system.nim b/lib/system.nim index b7a4b45cf..532883853 100644 --- a/lib/system.nim +++ b/lib/system.nim @@ -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) |