Files
Nim/tests/modules/tcanimport.nim
2018-03-06 15:57:46 +01:00

20 lines
244 B
Nim

discard """
output: '''ABC
nope'''
"""
template canImport(x): bool =
compiles:
import x
when canImport(strutils):
import strutils
echo "abc".toUpperAscii
else:
echo "meh"
when canImport(none):
echo "what"
else:
echo "nope"