Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
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
();
}