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