mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-04 04:02:41 +00:00
16 lines
224 B
Nim
16 lines
224 B
Nim
discard """
|
|
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"
|