blob: 534309f0c986f5480160a97efe5959b9f3ab062c [file] [log] [blame]
// { dg-do assemble }
struct S
{
void f(int);
void f(double);
};
void g(int);
void g(double);
template <int* IP>
void foo(); // { dg-message "note" }
template <long l>
void foo(); // { dg-message "note" }
void bar()
{
foo<S::f>(); // { dg-error "" } no matching function
foo<g>(); // { dg-error "" } no matching function
}