From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3335 invoked by alias); 23 Feb 2003 21:56: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 3236 invoked by uid 71); 23 Feb 2003 21:56:01 -0000 Date: Sun, 23 Feb 2003 21:56:00 -0000 Message-ID: <20030223215601.3235.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Paul Subject: Re: c++/7861: Finds executables instead of standard headers? Reply-To: Paul X-SW-Source: 2003-02/txt/msg01219.txt.bz2 List-Id: The following reply was made to PR c++/7861; it has been noted by GNATS. From: Paul To: gcc-gnats@gcc.gnu.org, gcc-bugs@gcc.gnu.org, nobody@gcc.gnu.org, gcc-prs@gcc.gnu.org, paulf.johnson@ukonline.co.uk?Subject Cc: Subject: Re: c++/7861: Finds executables instead of standard headers? Date: Sun, 23 Feb 2003 21:57:27 +0000 http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=7861 Hi, /* test.cpp */ #include #include using namespace std; int main() { string hi = "Paul"; cout << "Hello " << hi << endl; } g++ test.cpp -o string Compiles fine. Change "Paul" to "Phil" (say), recompile and watch the fireworks! TTFN Paul