aboutsummaryrefslogtreecommitdiffstats
path: root/test/array.c
diff options
context:
space:
mode:
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];
+}