Sign in
chromium
/
external
/
github.com
/
llvm-mirror
/
clang
/
327f79bc69360fadf014aecc5e81bc706f9693b6
/
.
/
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
);
}