// PR c++/57550 template bool Wrapper(double); template void MakeHandler(bool (T)); class Handler { public: template static void SetPrimitiveHandlers() { MakeHandler(Wrapper >); } private : template static bool Append(T); }; template void Handler::SetPrimitiveHandlers();