Sign in
android
/
platform
/
external
/
stg
/
refs/tags/aml_ads_351312060
/
.
/
test_cases
/
diff_tests
/
reference
/
kind.1.cc
blob: 157d0712ccee564fb9e8926073f1789c4c110fc4 [
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
;
};
void
func
(
foo a
)
{
(
void
)
a
;
}