blob: 2e580557bc3a3c8f0c52a29a58bc7522fcf4eefd (
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 that bool is a better overload match than 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) { }
int i( int );
long int i( long int );
bool i( bool );
void test_i()
{
// Overload to bool, not int
type_equal<bool>(i(nullptr));
decltype(nullptr) mynull = 0;
type_equal<bool>(i(mynull));
}
|