blob: 8d9312c019bb74b41a6a491296dca3c59e9e8d0d [file] [log] [blame]
// { dg-do compile { target c++11 } }
typedef const int* type;
float& foo( const type& ggg );
int& foo( type&& ggg );
void bar( int* someptr )
{
int& x = foo( someptr );
}