blob: d1e6fa56b1dfae45c9bdb863c483c2f83f481782 [file] [log] [blame]
// { dg-options "-std=c++0x" }
typedef const int* type;
float& foo( const type& ggg );
int& foo( type&& ggg );
void bar( int* someptr )
{
int& x = foo( someptr );
}