summary refs log tree commit diff stats
path: root/tests/msgs/mdeprecated3.nim
blob: 0a9c6e37dad5e997fbaebf9300e381ef9b71dfc3 (plain) (blame)
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".}