repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
Sema
/
unnamed-bitfield-init.c
blob
6fa18014179ed14f3790d03b8253e256f4eff31d
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
// expected-no-diagnostics
3
typedef
struct
{
4
int
a
;
int
:
24
;
char
b
;
5
}
S
;
6
7
S a
= {
1
,
2
};