mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 17:26:06 +00:00
8 lines
143 B
C
8 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 };
|