aboutsummaryrefslogtreecommitdiff
path: root/tests/bitfield-compound-assign.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/bitfield-compound-assign.c
parent953e1e6f287d8bc00b2ef8d2197a20a549274eb3 (diff)
tests -> test
Diffstat (limited to 'tests/bitfield-compound-assign.c')
-rw-r--r--tests/bitfield-compound-assign.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/bitfield-compound-assign.c b/tests/bitfield-compound-assign.c
deleted file mode 100644
index 5ca42e4..0000000
--- a/tests/bitfield-compound-assign.c
+++ /dev/null
@@ -1,7 +0,0 @@
-struct {
- int : 4, x : 9, : 3;
-} s;
-
-void f(void) {
- s.x += 3;
-}