From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17231 invoked by alias); 6 May 2003 00:36:01 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 17204 invoked by uid 71); 6 May 2003 00:36:00 -0000 Date: Tue, 06 May 2003 00:36:00 -0000 Message-ID: <20030506003600.17203.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Wolfgang Bangerth Subject: Re: c++/2094 Reply-To: Wolfgang Bangerth X-SW-Source: 2003-05/txt/msg00325.txt.bz2 List-Id: The following reply was made to PR c++/2094; it has been noted by GNATS. From: Wolfgang Bangerth To: gcc-gnats@gcc.gnu.org Cc: Subject: Re: c++/2094 Date: Mon, 5 May 2003 19:30:36 -0500 (CDT) Here's a small testcase that is somewhat more like our usual ones: --------------------- struct S { int i; }; template struct X { X (); template X(const X &); }; X<&S::i,S> x = X<&S::i,S>(); ----------------------------