mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +00:00
11 lines
240 B
Nim
11 lines
240 B
Nim
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)
|