summary refs log tree commit diff stats
path: root/tests/generics/t21760.nim
blob: 5343279bb35115649c4a93ea16fe29196b0f1b4a (plain) (blame)
1
2
3
4
5
6
7
8
import std/tables

type Url = object

proc myInit(_: type[Url], params = default(Table[string, string])): Url =
  discard

discard myInit(Url)