diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | bfef399519ca9b8a4b4c6b563253bad7e0eeffe0 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/Sema/init.c | |
parent | 6a0372513edbc473b538d2f724efac50405d6fef (diff) |
Diffstat (limited to 'test/Sema/init.c')
-rw-r--r-- | test/Sema/init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Sema/init.c b/test/Sema/init.c index 81a665dc6297..4a5fc558c51b 100644 --- a/test/Sema/init.c +++ b/test/Sema/init.c @@ -157,3 +157,6 @@ int PR4386_zed() __attribute((weak)); typedef char strty[10]; struct vortexstruct { strty s; }; struct vortexstruct vortexvar = { "asdf" }; + +typedef struct { uintptr_t x : 2; } StructWithBitfield; +StructWithBitfield bitfieldvar = { (uintptr_t)&bitfieldvar }; // expected-error {{initializer element is not a compile-time constant}} |