From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29500 invoked by alias); 18 Jan 2003 09:36:02 -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 29477 invoked by uid 71); 18 Jan 2003 09:36:01 -0000 Date: Sat, 18 Jan 2003 09:36:00 -0000 Message-ID: <20030118093601.29476.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Gabriel Dos Reis Subject: Re: c++/8772: Segmentation fault on 3 lines of template code Reply-To: Gabriel Dos Reis X-SW-Source: 2003-01/txt/msg01081.txt.bz2 List-Id: The following reply was made to PR c++/8772; it has been noted by GNATS. From: Gabriel Dos Reis To: Wolfgang Bangerth Cc: Volker Reichelt , gcc-gnats@gcc.gnu.org, , Subject: Re: c++/8772: Segmentation fault on 3 lines of template code Date: 18 Jan 2003 10:28:18 +0100 Wolfgang Bangerth writes: | > What are we going to do with the PR w.r.t. the how-to-make-to-code-legal | > issue? Leave it open, close it, suspend it, open a new PR? | | Good question. Just to recall this briefly: this code | --------------- | template struct A { | template struct B { enum { v = 1 }; }; | }; | | template