aboutsummaryrefslogtreecommitdiffstats
path: root/asn1c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-03-04 09:05:14 +0000
committerLev Walkin <vlm@lionet.info>2005-03-04 09:05:14 +0000
commitefa53fcfe81f2f536b0865f4dd3962dcb66b1e9c (patch)
treefe0764631f574b2edcdb90ccca0bc6eb072fcd2a /asn1c
parent5d383288672eaf4eff2bc7c6c6e1bb1b664d619b (diff)
test for compilability
Diffstat (limited to 'asn1c')
-rw-r--r--asn1c/tests/check-72.-fcompound-names.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/asn1c/tests/check-72.-fcompound-names.c b/asn1c/tests/check-72.-fcompound-names.c
new file mode 100644
index 00000000..322742d1
--- /dev/null
+++ b/asn1c/tests/check-72.-fcompound-names.c
@@ -0,0 +1,24 @@
+#undef NDEBUG
+#include <stdio.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <string.h>
+#include <assert.h>
+
+#include <Type.h>
+
+int
+main(int ac, char **av) {
+ Type_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;
+}