aboutsummaryrefslogtreecommitdiff
path: root/tests/errors/non_arithmetic_type_arithmetic.amal
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2019-07-31 01:25:05 +0200
committerdec05eba <dec05eba@protonmail.com>2020-07-25 14:36:46 +0200
commit1f28c3c733ea3ae4234bff91e1c55e61b1ee3e96 (patch)
tree0ab52e362da03fde741ce8159ef8a4110cd1fb6a /tests/errors/non_arithmetic_type_arithmetic.amal
parentec1a48e7b86fcd00127dd5a88d56c42083af1d78 (diff)
Starting on asm, implementing extern function call so progress is visible
Diffstat (limited to 'tests/errors/non_arithmetic_type_arithmetic.amal')
-rw-r--r--tests/errors/non_arithmetic_type_arithmetic.amal4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/errors/non_arithmetic_type_arithmetic.amal b/tests/errors/non_arithmetic_type_arithmetic.amal
new file mode 100644
index 0000000..6635d06
--- /dev/null
+++ b/tests/errors/non_arithmetic_type_arithmetic.amal
@@ -0,0 +1,4 @@
+const main = fn {
+ const value = "hello, world";
+ const value2 = value + value;
+} \ No newline at end of file