diff options
Diffstat (limited to 'tests/ic/tstdlib_import_changed.nim')
-rw-r--r-- | tests/ic/tstdlib_import_changed.nim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ic/tstdlib_import_changed.nim b/tests/ic/tstdlib_import_changed.nim new file mode 100644 index 000000000..da69a53b5 --- /dev/null +++ b/tests/ic/tstdlib_import_changed.nim @@ -0,0 +1,15 @@ +discard """ + output: '''yes''' +""" + +echo "yes" + +#!EDIT!# + +discard """ + output: '''yes2''' +""" + +import std / [monotimes] +#discard getMonoTime() +echo "yes2" |