From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29967 invoked by alias); 5 Nov 2005 02:49:47 -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 29945 invoked by uid 48); 5 Nov 2005 02:49:43 -0000 Date: Sat, 05 Nov 2005 02:49:00 -0000 Message-ID: <20051105024943.29944.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug c++/24680] Invalid template code accepted In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "pinskia at gcc dot gnu dot org" X-SW-Source: 2005-11/txt/msg00719.txt.bz2 List-Id: ------- Comment #14 from pinskia at gcc dot gnu dot org 2005-11-05 02:49 ------- (In reply to comment #13) > The error which EDG front-end gives: > "ComeauTest.c", line 33: error: a reference of type "int &" (not > const-qualified) > cannot be initialized with a value of type "double" > resize(d->size); > ^ > detected during instantiation of > "List &List::fill(const T &, int) [with T=int]" > 1 error detected in the compilation of "ComeauTest.c". The other reason why this does not make sense is that EDG/Comeau is saying that the type of d->size is always int but when instantiate List::fill, the front-end sees that it is not an int and then errors out. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24680