modernc.org/cc@v1.0.1/v2/testdata/bug/14.c (about) 1 #include <assert.h> 2 3 typedef struct _SYSTEM_INFO { 4 union { 5 int dwOemId; 6 struct { 7 int wProcessorArchitecture; 8 int wReserved; 9 }; 10 }; 11 int dwPageSize; 12 int lpMinimumApplicationAddress; 13 int lpMaximumApplicationAddress; 14 int dwActiveProcessorMask; 15 int dwNumberOfProcessors; 16 int dwProcessorType; 17 int dwAllocationGranularity; 18 int wProcessorLevel; 19 int wProcessorRevision; 20 } SYSTEM_INFO; 21 22 int main() { 23 SYSTEM_INFO sysinfo; 24 sysinfo.dwPageSize = 1; 25 }