4a6138547bc3b7fa6901648d55cd97203a785b80
[com/asn1c.git] / tests / tests-c-compiler / check-src / check-43.c
1 #undef  NDEBUG
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <sys/types.h>
5 #include <string.h>
6 #include <assert.h>
7
8 #include <Test-structure-1.h>
9 #include <Choice-1.h>
10
11 int
12 main(int ac, char **av) {
13         Test_structure_1_t ts1;
14         Choice_1_t cs1;
15
16         (void)ac;       /* Unused argument */
17         (void)av;       /* Unused argument */
18
19         memset(&ts1, 0, sizeof(ts1));
20         memset(&cs1, 0, sizeof(cs1));
21
22         /*
23          * No plans to fill it up: just checking whether it compiles or not.
24          */
25
26         return 0;
27 }