android_mt6572_jiabo/external/clang/test/Sema/unnamed-bitfield-init.c
2025-09-05 16:56:03 +08:00

7 lines
143 B
C

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
typedef struct {
int a; int : 24; char b;
} S;
S a = { 1, 2 };