Files
Nim/tests/deprecated/tnoannot.nim
LemonBoy cf20c4460c More robust handling of deprecated pragmas (#8696)
Prevent `deprecated` annotations to "slip" up to the parent module and
warn about unsupported annotations.

Accidentally fixes #7867
2018-08-21 15:07:44 +02:00

8 lines
150 B
Nim

discard """
line: 7
errormsg: "annotation to deprecated not supported here"
"""
var foo* {.deprecated.} = 42
var foo1* {.deprecated: "no".} = 42