Sign in
cobalt
/
cobalt
/
3cd5432aaed8f14f27f66ade1b51aa71df939492
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
ASTMerge
/
anonymous-fields
/
Inputs
/
anonymous-fields2.cpp
blob: 28ea46d98711b4c0e50d50c5197facb439d25349 [
file
] [
log
] [
blame
]
class
A
{
public
:
struct
{
int
foo
;
}
f
;
struct
{
int
foo
;
}
g
;
};
inline
int
useA
(
A
&
a
)
{
return
(
a
.
f
.
foo
+
a
.
g
.
foo
);
}