We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
import macros macro foo(T: typed): untyped = echo T.typeKind T proc x[T](v: foo(T)) = discard x[float](10)
ntyGenericParam test.nim(7, 17) Error: type expected, but expression has no type
ntyFloat