diff options
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 81a665d..4a5fc55 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}} |