summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/pr33930.C
blob: d1e6fa56b1dfae45c9bdb863c483c2f83f481782 (plain)
1
2
3
4
5
6
7
8
9
10
// { 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 );
}