Close #8545 by add a test case (#17432)

Co-authored-by: Timothee Cour <timothee.cour2@gmail.com>
This commit is contained in:
konsumlamm
2021-03-21 02:30:57 +01:00
committed by GitHub
parent b70e33f5bb
commit eca0b87544

23
tests/misc/t8545.nim Normal file
View File

@@ -0,0 +1,23 @@
discard """
targets: "c cpp js"
"""
# bug #8545
template bar(a: static[bool]): untyped = int
proc main() =
proc foo1(a: static[bool]): auto = 1
doAssert foo1(true) == 1
proc foo2(a: static[bool]): bar(a) = 1
doAssert foo2(true) == 1
proc foo3(a: static[bool]): bar(cast[static[bool]](a)) = 1
doAssert foo3(true) == 1
proc foo4(a: static[bool]): bar(static(a)) = 1
doAssert foo4(true) == 1
static: main()
main()