Files
Nim/tests/msgs/tdeprecated3.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

34 lines
643 B
Nim

discard """
matrix: "--hint:all:off"
nimoutFull: true
nimout: '''
tdeprecated3.nim(21, 8) Warning: goodbye; mdeprecated3 is deprecated [Deprecated]
tdeprecated3.nim(24, 10) Warning: Ty is deprecated [Deprecated]
tdeprecated3.nim(27, 10) Warning: hello; Ty1 is deprecated [Deprecated]
tdeprecated3.nim(30, 8) Warning: aVar is deprecated [Deprecated]
tdeprecated3.nim(32, 3) Warning: aProc is deprecated [Deprecated]
tdeprecated3.nim(33, 3) Warning: hello; aProc1 is deprecated [Deprecated]
'''
"""
# line 20
import mdeprecated3
block:
var z: Ty
z = 0
block:
var z: Ty1
z = 0
block:
echo aVar
block:
aProc()
aProc1()