blob: 6b9e1b4e780024589f56d08c8a6dde2bb1216879 [file] [log] [blame]
// PR c++/84702 failure to mark overload to keep
// { dg-do compile { target c++11 } }
void a ();
namespace {
void a (int);
}
template<void (&b)() = a>
void c () {
c ();
}