aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/cpp0x/auto22.C
blob: 66630e5367ff36202130387ca10c2f4fb424c510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// PR c++/47999
// { dg-options -std=c++0x }

int& identity(int& i)
{
  return i;
}

// In a function template, auto type deduction works incorrectly.
template <typename = void>
void f()
{
  int i = 0;
  auto&& x = identity(i); // Type of x should be `int&`, but it is `int&&`.
}

int main (int argc, char* argv[])
{
  f();
  return 0;
}