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