Initial version of asn1c
[com/asn1c.git] / tests / tests-c-compiler / check-src / check-33.c
diff --git a/tests/tests-c-compiler/check-src/check-33.c b/tests/tests-c-compiler/check-src/check-33.c
new file mode 100644 (file)
index 0000000..6163871
--- /dev/null
@@ -0,0 +1,24 @@
+#undef NDEBUG
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <string.h>
+#include <assert.h>
+
+#include <T.h>
+
+int
+main(int ac, char **av) {
+       T_t t;
+
+       (void)ac;       /* Unused argument */
+       (void)av;       /* Unused argument */
+
+       memset(&t, 0, sizeof(t));
+
+       /*
+        * No plans to fill it up: just checking whether it compiles or not.
+        */
+
+       return 0;
+}