// { dg-do compile { target c++11 } } // Test template deduction template struct tType_equal; template struct tType_equal { typedef void type; }; template inline typename tType_equal::type type_equal(U) { } template T* g( T* t ); // { dg-message "note" } void test_g() { // Deduction to nullptr_t, no deduction to pointer type // g(nullptr); // { dg-error "no matching function for call to " } // { dg-message "(candidate|mismatched types)" "candidate note" { target *-*-* } 19 } type_equal(g((float*)nullptr)); decltype(nullptr) mynull = 0; g(mynull); // { dg-error "no matching function for call to " } // { dg-message "(candidate|mismatched types)" "candidate note" { target *-*-* } 23 } type_equal(g((float*)mynull)); }