mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
23 lines
484 B
C
23 lines
484 B
C
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/bitfields1.c(103): Error: no alignment-specifier for bit field declaration
|
|
fail_compilation/bitfields1.c(108): Error: no type-specifier for struct member
|
|
fail_compilation/bitfields1.c(111): Error: no type-specifier for struct member
|
|
fail_compilation/bitfields1.c(112): Error: no type-specifier for struct member
|
|
---
|
|
*/
|
|
|
|
#line 100
|
|
|
|
struct S
|
|
{
|
|
_Alignas(4) int a:3;
|
|
};
|
|
|
|
struct T
|
|
{
|
|
:3;
|
|
};
|
|
|
|
struct E1 { :0; int x; };
|
|
struct E2 { int x; :0; };
|