aboutsummaryrefslogtreecommitdiffhomepage
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/test.c b/test.c
index 92ab2f2..40b59e6 100644
--- a/test.c
+++ b/test.c
@@ -80,13 +80,18 @@ enum ball {
X = 2147483647,
Y,
Z,
- W = ~0ul
+ W = ~0ull
};
enum ball x;
-main(t) {
- putc(t + 1, t + 2);
+_Bool t(int t)
+{
+ return t;
}
+struct f{
+ union { int x,y;} ;
+ char flex[];
+};
//