aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c/tests/check-43.c
diff options
context:
space:
mode:
Diffstat (limited to 'asn1c/tests/check-43.c')
-rw-r--r--asn1c/tests/check-43.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/asn1c/tests/check-43.c b/asn1c/tests/check-43.c
new file mode 100644
index 00000000..e44218d8
--- /dev/null
+++ b/asn1c/tests/check-43.c
@@ -0,0 +1,24 @@
+#undef NDEBUG
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <string.h>
+#include <assert.h>
+
+#include <Test-structure-1.h>
+#include <Sets.h>
+
+int
+main(int ac, char **av) {
+ Test_structure_1_t ts1;
+ Sets_t s1;
+
+ memset(&ts1, 0, sizeof(ts1));
+ memset(&s1, 0, sizeof(s1));
+
+ /*
+ * No plans to fill it up: just checking whether it compiles or not.
+ */
+
+ return 0;
+}