* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / nullptr17.C
blob616cd67581fcb597c9cfdc7ba3fae31a7277a66c
1 // { dg-do compile { target c++11 } }
3 // Used to test that bool is a better overload match than int
4 // Updated for DR 1423
6 template <typename T, typename U> struct tType_equal;
7 template <typename T> struct tType_equal<T, T> { typedef void type; };
9 template <typename T, typename U>
10 inline typename tType_equal<T, U>::type
11 type_equal(U) { }
13 int i( int );
14 long int i( long int );
15 bool i( bool );
17 void test_i()
19   // Overload to bool, not int
20   type_equal<bool>(i(nullptr));  // { dg-error "direct" }
21   decltype(nullptr) mynull = 0;
22   type_equal<bool>(i(mynull));   // { dg-error "direct" }