diff options
Diffstat (limited to 'tests/run')
-rw-r--r-- | tests/run/thexlit.nim | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/run/thexlit.nim b/tests/run/thexlit.nim new file mode 100644 index 000000000..04a530c9c --- /dev/null +++ b/tests/run/thexlit.nim @@ -0,0 +1,12 @@ +discard """ + file: "thexlit.nim" + output: "equal" +""" + +var t=0x950412DE + +if t==0x950412DE: + echo "equal" +else: + echo "not equal" + |