Files
Nim/tests/pragmas/thintprocessing.nim
2021-04-04 13:47:28 -07:00

19 lines
277 B
Nim

discard """
disabled: windows
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"