summary refs log tree commit diff stats
path: root/tests/run
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2012-05-09 23:59:12 +0200
committerAraq <rumpf_a@web.de>2012-05-09 23:59:12 +0200
commitccc4ed2c5a928b5e1adc91e7e5c4a6b16032b8ec (patch)
tree718363116b380cfdfc5503b7a94119aa7132232b /tests/run
parent2f17c264f43b93056a0d0d91de61cb85c58bff0b (diff)
downloadNim-ccc4ed2c5a928b5e1adc91e7e5c4a6b16032b8ec.tar.gz
added thexlit test
Diffstat (limited to 'tests/run')
-rw-r--r--tests/run/thexlit.nim12
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"
+