2 // Origin: <marco dot franzen at bigfoot dot com>
3 // PR c++/10126: Handle ptmf default conversions while matching a template
14 template <int (D::*fun)() const> int Get(); // { dg-message "note" }
18 Get<&B::I>(); // { dg-error "not a valid template argument" "not valid" }
19 // { dg-error "no match" "no match" { target *-*-* } 18 }
20 // { dg-message "note" "note" { target *-*-* } 18 }
21 Get<&D::I>(); // { dg-error "not a valid template argument" "not valid" }
22 // { dg-error "no match" "no match" { target *-*-* } 21 }
23 // { dg-message "note" "note" { target *-*-* } 21 }