OSDN Git Service

Some raw string changes from N3077
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / nullptr17.C
1 // { dg-do compile }
2 // { dg-options "-std=c++0x" }
3
4 // Test that bool is a better overload match than int
5
6 template <typename T, typename U> struct tType_equal;
7 template <typename T> struct tType_equal<T, T> { typedef void type; };
8
9 template <typename T, typename U>
10 inline typename tType_equal<T, U>::type
11 type_equal(U) { }
12
13 int i( int );
14 long int i( long int );
15 bool i( bool );
16
17 void test_i()
18 {
19   // Overload to bool, not int
20   type_equal<bool>(i(nullptr));
21 }