aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test.c b/test.c
new file mode 100644
index 0000000..cb188a3
--- /dev/null
+++ b/test.c
@@ -0,0 +1,8 @@
+int main()
+{
+ int x[4][3] = {
+ { 1, 2 },
+ { 3, 4, 5},
+ { 6, 7, 8 }
+ };
+}