add more
[cdsspec-compiler.git] / test.c
diff --git a/test.c b/test.c
index ebb88e0f02f7616818ccc5235971a861afdd5724..65c412a0f7c9ef4279121b33f44d960ee424ef56 100644 (file)
--- a/test.c
+++ b/test.c
@@ -1,16 +1,10 @@
-#include <stdio.h>
-#include <stddef.h>
-
-struct pair {
-       int x, y;
-};
-
-int func() {
-       return 3;
-}
+# include <stdio.h>
+#include <stdlib.h>
+#include <stdint.h>
 
 int main() {
-       int b;
-       b = (int a = func());
-       return 0;
+       uint64_t i64 = (uint64_t) NULL;
+       if (i64)
+               printf("True\n");
+       return 1;
 }