------- Comment #2 from pinskia at gcc dot gnu dot org  2008-11-23 18:25 -------
Reduced testcase:
namespace std {
  template<typename _Signature>     class function;
  template<typename _Res, typename... _ArgTypes> struct
function<_Res(_ArgTypes...)>
  {
    template<typename _Functor> function(_Functor __f);
  };
}
struct foo {
  void bar();
};
foo f;
void (foo::*a)()=&foo::bar;
std::function<void()> funct=((f).*(a));


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-11-23 18:25:55
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38228

Reply via email to