summary refs log blame commit diff stats
path: root/tests/deprecated/tannot.nim
blob: d14f6cc235181f5e2d8dab132d55e1e7a719ffb1 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                            
discard """
  nimout: '''tannot.nim(9, 1) Warning: efgh; foo1 is deprecated [Deprecated]
tannot.nim(9, 8) Warning: abcd; foo is deprecated [Deprecated]
'''
"""

let foo* {.deprecated: "abcd".} = 42
var foo1* {.deprecated: "efgh".} = 42
foo1 = foo