Sign in
android
/
platform
/
external
/
stg
/
refs/tags/aml_ads_351312060
/
.
/
test_cases
/
diff_tests
/
reference
/
kind_and_type.0.cc
blob: 28e8c13c43b9e2a245e158f4212b5cedbc165852 [
file
] [
log
] [
blame
]
struct
foo
{
int
&
lref_to_ptr
;
int
*
ptr_to_lref
;
int
&&
rref_to_ptr
;
int
*
ptr_to_rref
;
int
&
lref_to_rref
;
int
&&
rref_to_lref
;
};
int
func
(
foo x
)
{
return
x
.
lref_to_ptr
+
x
.
rref_to_lref
;
}