Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
gcc
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
ref-qual15.C
blob: ca333c2e2874e820f4574f3e490848cff0f79c60 [
file
] [
log
] [
blame
]
// PR c++/59296
// { dg-do compile { target c++11 } }
struct
Type
{
void
get
()
const
&
{
}
void
get
()
const
&&
{
}
};
int
main
()
{
Type
{}.
get
();
}