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









                                                
type
  Ty* {.deprecated.} = uint32
  Ty1* {.deprecated: "hello".} = uint32

var aVar* {.deprecated.}: char

proc aProc*() {.deprecated.} = discard
proc aProc1*() {.deprecated: "hello".} = discard

{.deprecated: "goodbye".}