summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarson Fleming <[email protected]>2026-03-28 09:42:44 -1000
committerCarson Fleming <[email protected]>2026-03-28 09:42:44 -1000
commit33d10c0a684eaacb59102e2e2c2494ef54113aa1 (patch)
tree230b1f1cfc4a6cde3285e2fac35c7f9a7a414e17 /test
parent55929c155f929a886a0fe72c1c16a7913830350a (diff)
downloadccc-33d10c0a684eaacb59102e2e2c2494ef54113aa1.tar.gz
we got assignments bois
Diffstat (limited to 'test')
-rw-r--r--test/assign.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/assign.c b/test/assign.c
new file mode 100644
index 0000000..d4153b2
--- /dev/null
+++ b/test/assign.c
@@ -0,0 +1,5 @@
+int main(int argc, char** argv) {
+ int x;
+ int y = (x = argc);
+ return x;
+}