Files
Nim/tests/msgs/tdeprecated1.nim
metagn b97d603cd0 some test cleanups & category reorganization (#22010)
* clean up some test categories

* mention exact slice issue

* magics into system

* move trangechecks into overflow

* move tmemory to system

* try fix CI

* try fix CI

* final CI fix
2023-06-06 06:54:07 +02:00

16 lines
510 B
Nim

let foo* {.deprecated: "abcd".} = 42
var foo1* {.deprecated: "efgh".} = 42
foo1 = foo #[tt.Warning
^ efgh; foo1 is deprecated [Deprecated]; tt.Warning
^ abcd; foo is deprecated [Deprecated]]#
proc hello[T](a: T) {.deprecated: "Deprecated since v1.2.0, use 'HelloZ'".} =
discard
hello[int](12) #[tt.Warning
^ Deprecated since v1.2.0, use 'HelloZ'; hello is deprecated [Deprecated]]#
const foo2* {.deprecated: "abcd".} = 42
discard foo2 #[tt.Warning
^ abcd; foo2 is deprecated [Deprecated]]#