This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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;
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]