summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/bitfld-7.c
diff options
context:
space:
mode:
authorjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2003-11-29 20:09:48 +0000
committerjsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>2003-11-29 20:09:48 +0000
commitd51ca159d6978fd57fd4fed8a682a3524ae1fd0a (patch)
tree4d419d4608db09c9377ca886e7a0f46230ca3c66 /gcc/testsuite/gcc.dg/bitfld-7.c
parent875abd36c5eb803220e5128d9e6bafd1a83bd5c1 (diff)
downloadgcc-d51ca159d6978fd57fd4fed8a682a3524ae1fd0a.tar.gz
PR c/10333
* c-parse.in (typespec_reserved_nonattr): Reject typeof on bit-fields. testsuite: * gcc.dg/bitfld-7.c: New test. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@74036 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.dg/bitfld-7.c')
-rw-r--r--gcc/testsuite/gcc.dg/bitfld-7.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/bitfld-7.c b/gcc/testsuite/gcc.dg/bitfld-7.c
new file mode 100644
index 00000000000..70004ffd8cb
--- /dev/null
+++ b/gcc/testsuite/gcc.dg/bitfld-7.c
@@ -0,0 +1,8 @@
+/* Test for rejection of typeof on bit-fields. PR c/10333. */
+/* Origin: Joseph Myers <jsm@polyomino.org.uk> */
+/* { dg-do compile } */
+/* { dg-options "" } */
+
+struct { int a:1; } x;
+
+typeof (x.a) z; /* { dg-error "applied to a bit-field" "typeof" } */