summaryrefslogtreecommitdiffstats
path: root/test/exp1.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/exp1.c')
-rw-r--r--test/exp1.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/exp1.c b/test/exp1.c
new file mode 100644
index 0000000..8488e9b
--- /dev/null
+++ b/test/exp1.c
@@ -0,0 +1,21 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+typedef struct s
+{
+ int num;
+ char **val;
+} s;
+
+char *list1[] = {"asd","asd"};
+
+s def1[] =
+{
+ {1,list1}
+};
+
+int main()
+{
+
+ return 0;
+} \ No newline at end of file