From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3617 invoked by alias); 28 May 2004 01:42:04 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 3610 invoked by uid 48); 28 May 2004 01:42:03 -0000 Date: Fri, 28 May 2004 19:03:00 -0000 Message-ID: <20040528014203.3609.qmail@sourceware.org> From: "pinskia at gcc dot gnu dot org" To: gcc-bugs@gcc.gnu.org In-Reply-To: <20040527163621.15684.gianni@mariani.ws> References: <20040527163621.15684.gianni@mariani.ws> Reply-To: gcc-bugzilla@gcc.gnu.org Subject: [Bug c++/15684] Pointer to member function called on incomplete type should diag X-Bugzilla-Reason: CC X-SW-Source: 2004-05/txt/msg03353.txt.bz2 List-Id: ------- Additional Comments From pinskia at gcc dot gnu dot org 2004-05-28 01:42 ------- Confirmed, note that is well defined though as ->* is the pointer-to-member of T only T needs to be completely-defined and not the left side. class A {}; class B; class C { typedef void (A::*ftype)(); C(B* a){a->*ftype();} } -- What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed| |1 Last reconfirmed|0000-00-00 00:00:00 |2004-05-28 01:42:02 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15684