aboutsummaryrefslogtreecommitdiffstats
path: root/test/array.c
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2020-06-12 11:55:16 +0100
committerYann Herklotz <git@yannherklotz.com>2020-06-12 11:55:16 +0100
commitc358d4a8fc6073b24c3f270d0525644b03a4f291 (patch)
tree1c1d08c026d6daf0af407ba072761cac03df6e08 /test/array.c
parentd4a2e1ced4deabe9be6b32919cc4c1499751c433 (diff)
downloadvericert-c358d4a8fc6073b24c3f270d0525644b03a4f291.tar.gz
vericert-c358d4a8fc6073b24c3f270d0525644b03a4f291.zip
Add array to test
Diffstat (limited to 'test/array.c')
-rw-r--r--test/array.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/array.c b/test/array.c
new file mode 100644
index 0000000..e33d47b
--- /dev/null
+++ b/test/array.c
@@ -0,0 +1,4 @@
+int main() {
+ int x[5] = {1, 2, 3, 4, 5};
+ return x[2];
+}