aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/temp_default3.C
blob: f71fe0f435ad7587ff9eb2e7e4e6526032c025f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-options "-std=c++0x" }

template<typename T, typename U = typename T::value_type>
void f(T);

void f(...);

struct X {
  typedef int value_type;
};

void g()
{
  f(X()); // okay
  f(17); // okay?
}