summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/auto5.C
blob: ebe2df22e6fa01bb29f47bda24412c386dcdf4c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Testcase for non-dependent auto in templates
// { dg-options "-std=c++0x" }

struct A
{
  template<class> void f();
} a;

template <class T>
void g()
{
  auto aa = a;
  aa.f<int>();

  auto p = new auto (a);
  p->f<int>();
}

int main()
{
  g<double>();
}