mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-08 14:03:23 +00:00
22 lines
184 B
Nim
22 lines
184 B
Nim
# Test based on issue #12517
|
|
|
|
discard """
|
|
nimout: '''
|
|
nimvm
|
|
both
|
|
'''
|
|
output: '''
|
|
both
|
|
'''
|
|
"""
|
|
|
|
proc test() =
|
|
when nimvm:
|
|
echo "nimvm"
|
|
echo "both"
|
|
|
|
static:
|
|
test()
|
|
test()
|
|
|