Sign in
android
/
platform
/
external
/
stg
/
refs/tags/aml_ads_351312060
/
.
/
test_cases
/
diff_tests
/
types
/
pointer_reference.0.cc
blob: 5e472c848bdb8f3bcb7e7d14650daadaad582a75 [
file
] [
log
] [
blame
]
struct
foo
{
int
x
=
0
;
};
int
a
;
foo b
;
foo
*
c
;
foo
&
d
=
b
;
foo
*
*
e
=
&
c
;
foo
*
&
f
=
c
;
const
foo g
;
const
foo
*
h
=
&
g
;
const
foo
&
i
=
g
;
const
foo
*
*
j
=
&
h
;
const
foo
*
&
k
=
h
;