summaryrefslogtreecommitdiff
path: root/tests/interop/test_c_macros.zc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/interop/test_c_macros.zc')
-rw-r--r--tests/interop/test_c_macros.zc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/interop/test_c_macros.zc b/tests/interop/test_c_macros.zc
index 0b1fc64..b1b9b68 100644
--- a/tests/interop/test_c_macros.zc
+++ b/tests/interop/test_c_macros.zc
@@ -3,7 +3,7 @@
#define DEBUG_MODE 1
test "test_c_macros" {
- var x = MAX(10, 20);
+ let x = MAX(10, 20);
if x == 20 {
println "MAX macro worked";