[Bug c++/46824] chromium-compile failed because error: no match for ‘operator*’ in

redi at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Thu Mar 10 18:09:00 GMT 2011


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

--- Comment #5 from Jonathan Wakely <redi at gcc dot gnu.org> 2011-03-10 18:08:52 UTC ---
really reduced:

class Incomplete;

struct Ptr
{
  operator Incomplete*();
};

int main()
{
  Ptr p;

  *p;
}



More information about the Gcc-bugs mailing list