Files
Nim/tests/generics/t21760.nim
SirOlaf baf350493b Fix #21760 (#22422)
* Remove call-specific replaceTypeVarsN

* Run for all call kinds and ignore typedesc

* Testcase

---------

Co-authored-by: SirOlaf <>
2023-08-10 07:56:09 +02:00

8 lines
142 B
Nim

import std/tables
type Url = object
proc myInit(_: type[Url], params = default(Table[string, string])): Url =
discard
discard myInit(Url)