aboutsummaryrefslogtreecommitdiff
path: root/tests/union.c
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-04-16 12:26:18 -0700
committerMichael Forney <mforney@mforney.org>2019-04-16 12:26:18 -0700
commitde004660726acb148bf0022706b7019ca560172d (patch)
treede95581449d1db324c074859615501cf8f0bc5c3 /tests/union.c
parent953e1e6f287d8bc00b2ef8d2197a20a549274eb3 (diff)
tests -> test
Diffstat (limited to 'tests/union.c')
-rw-r--r--tests/union.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/union.c b/tests/union.c
deleted file mode 100644
index 9b4e5f9..0000000
--- a/tests/union.c
+++ /dev/null
@@ -1,4 +0,0 @@
-union {
- int x;
- double y;
-} a = {.x = 5}, b = {.y = 7.5};