summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/nullptr14.C
blob: 0493bcca0067f48b3eee43a71c3d7eb7f5dc2bc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// { dg-do compile }
// { dg-options "-std=c++0x" }

// Test overload preference char*/int

template <typename T, typename U> struct tType_equal;
template <typename T> struct tType_equal<T, T> { typedef void type; };

template <typename T, typename U>
inline typename tType_equal<T, U>::type
type_equal(U) { }

char* f( char* );
int f( int );
long int f( long int );

void test_f()
{
  // Overloading cases
  //
  type_equal<char*>(f(nullptr));
  type_equal<int>(f(0));
}