aboutsummaryrefslogtreecommitdiffhomepage
path: root/test.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2023-06-04 23:26:06 +0200
committerlemon <lsof@mailbox.org>2023-06-04 23:26:06 +0200
commit6ce2ac20e1d9095281a233aeb778d0fa2c82dd74 (patch)
treee40a1b5f1c560ee48959cfea9ccaf816383223a5 /test.c
parent44dff9c3b9f0ba5ab574c91f406855a1cf0f4e7b (diff)
better diagnostics
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[];
+};
//