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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
ASTMerge
/
anonymous-fields
/
Inputs
/
anonymous-fields2.cpp
blob
28ea46d98711b4c0e50d50c5197facb439d25349
1
class
A
{
2
public
:
3
struct
{
int
foo
; }
f
;
4
struct
{
int
foo
; }
g
;
5
};
6
7
inline
int
useA
(
A
&
a
) {
8
return
(
a
.
f
.
foo
+
a
.
g
.
foo
);
9
}