Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
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
);
}