mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 06:18:51 +00:00
* close #12704 by adding a test * move test to tests/metatype/ttypedesc2.nim
This commit is contained in:
@@ -35,9 +35,23 @@ type Point[T] = tuple[x, y: T]
|
||||
proc origin(T: typedesc): Point[T] = discard
|
||||
discard origin(int)
|
||||
|
||||
block: # issue #12704
|
||||
const a = $("a", "b")
|
||||
proc fun() =
|
||||
const str = $int
|
||||
let b = $(str, "asdf")
|
||||
fun()
|
||||
|
||||
# https://github.com/nim-lang/Nim/issues/7516
|
||||
import typetraits
|
||||
|
||||
block: #issue #12704
|
||||
const a = $("a", "b")
|
||||
proc fun() =
|
||||
const str = name(int)
|
||||
let b = $(str, "asdf")
|
||||
fun()
|
||||
|
||||
proc hasDefault1(T: type = int): auto = return T.name
|
||||
doAssert hasDefault1(int) == "int"
|
||||
doAssert hasDefault1(string) == "string"
|
||||
|
||||
Reference in New Issue
Block a user