Files
Nim/tests/pragmas/twarning_off.nim
Timothee Cour 287dec06ae disable hint:processing in tests (#16713)
* disable hint:processing in tests

* fix test
2021-01-14 10:19:20 +01:00

18 lines
257 B
Nim

discard """
matrix: "--hint:processing"
nimout: '''
compile start
..
warn_module.nim(6, 6) Hint: 'test' is declared but not used [XDeclaredButNotUsed]
compile end
'''
"""
static:
echo "compile start"
import warn_module
static:
echo "compile end"