This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/46824] chromium-compile failed because error: no match for âoperator*â in
- From: "redi at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 10 Mar 2011 18:09:08 +0000
- Subject: [Bug c++/46824] chromium-compile failed because error: no match for âoperator*â in
- Auto-submitted: auto-generated
- References: <bug-46824-4@http.gcc.gnu.org/bugzilla/>
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;
}