This commit is contained in:
flywind
2020-07-09 15:57:35 +08:00
committed by GitHub
parent 399b2e3134
commit 40b58a0a18
3 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
discard """
nimout:'''tmessages.nim(10, 1) Warning: Deprecated since v1.2.0, use 'HelloZ'; hello is deprecated [Deprecated]
'''
"""
proc hello[T](a: T) {.deprecated: "Deprecated since v1.2.0, use 'HelloZ'".} =
discard
hello[int](12)