mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-12 22:33:49 +00:00
16 lines
283 B
Nim
16 lines
283 B
Nim
# issue #24838
|
|
|
|
{.pragma: testit, raises: [], deprecated: "abc".}
|
|
|
|
{.push testit.}
|
|
proc xxx() {.testit.} =
|
|
discard "hello"
|
|
proc yyy() =
|
|
discard "hello"
|
|
{.pop.}
|
|
|
|
xxx() #[tt.Warning
|
|
^ abc; xxx is deprecated [Deprecated]]#
|
|
yyy() #[tt.Warning
|
|
^ abc; yyy is deprecated [Deprecated]]#
|