Sign in
gnu
/
gcc
/
93ac832f1846e4867aa6537f76f510fab8e3e87d
/
.
/
gcc
/
testsuite
/
g++.dg
/
opt
/
pr3698.C
blob: ebdf5731eb30fecb53c83b757883e587cca4c8dd [
file
] [
log
] [
blame
]
// PR c++/3698
// { dg-do link }
// { dg-options "-O0" }
struct
X
{
int
i
;
};
inline
const
int
&
OHashKey
(
const
X
&
x
)
{
return
x
.
i
;
}
int
main
()
{
extern
const
int
&
OHashKey
(
const
X
&
x
);
X x
;
return
OHashKey
(
x
);
}