save
[cdsspec-compiler.git] / test.c
diff --git a/test.c b/test.c
index 2dec27eceb3b6ac000f73b34cd581585e452b24f..65c412a0f7c9ef4279121b33f44d960ee424ef56 100644 (file)
--- a/test.c
+++ b/test.c
@@ -1,14 +1,10 @@
-#include <stdio.h>
-#include "test.h"
-
-void _foo(struct Test t) {
-       printf("%d\n", t.x);
-}
-
-void foo(struct Test t) {
-       _foo(t);
-}
+# include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
 
 int main() {
-       return 0;
+       uint64_t i64 = (uint64_t) NULL;
+       if (i64)
+               printf("True\n");
+       return 1;
 }