aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/unnamed-bitfield-init.c
blob: 3a3869ab6dfbbbe406fc3b3151089da48fd5492c (plain)
1
2
3
4
5
6
// RUN: clang -fsyntax-only -verify %s
typedef struct {
        int a; int : 24; char b;
} S;

S a = { 1, 2 };