mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 20:17:42 +00:00
* Remove call-specific replaceTypeVarsN * Run for all call kinds and ignore typedesc * Testcase --------- Co-authored-by: SirOlaf <>
8 lines
142 B
Nim
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) |