summaryrefslogtreecommitdiff
path: root/tests/interop/test_c_macros.zc
diff options
context:
space:
mode:
authorSAJJA EASWAR <eshwarsajja20@gmail.com>2026-01-25 22:59:36 +0530
committerSAJJA EASWAR <eshwarsajja20@gmail.com>2026-01-25 22:59:36 +0530
commitebc8b94baa6bc694cb4829e2eb2934a1f17fa6a1 (patch)
tree71b952ad455bf17d5bdea01472f0e2297f25eabe /tests/interop/test_c_macros.zc
parent863118c95caac0d69a35f6ae4d2e83844734a8a1 (diff)
parent489336b2101bf16edeec7bfc4379408eb19b936e (diff)
Merge branch 'main' into pr-109
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";