[Bug c++/12879] [3.4 Regression] double error message when using incomplete types in a struct

2005-04-12 Thread cmchugh at callixa dot com
--- Additional Comments From cmchugh at callixa dot com 2005-04-13 00:56 --- Broken in 3.4.3 on AIX 5.2; $ cat x.cpp struct Exception { static void raise () throw (Exception){ throw Exception(); } }; $ g++ x.cpp x.cpp:2: error: invalid use of undefined type `struct Exception'

Re: [Bug c++/12879] [3.4 Regression] double error message when using incomplete types in a struct

2005-04-12 Thread Gabriel Dos Reis
cmchugh at callixa dot com [EMAIL PROTECTED] writes: | --- Additional Comments From cmchugh at callixa dot com 2005-04-13 00:56 --- | Broken in 3.4.3 on AIX 5.2; | | $ cat x.cpp | struct Exception { | static void raise () throw (Exception){ throw Exception(); } | }; | $ g++ x.cpp |

[Bug c++/12879] [3.4 Regression] double error message when using incomplete types in a struct

2005-04-12 Thread gdr at integrable-solutions dot net
--- Additional Comments From gdr at integrable-solutions dot net 2005-04-13 01:08 --- Subject: Re: [3.4 Regression] double error message when using incomplete types in a struct cmchugh at callixa dot com [EMAIL PROTECTED] writes: | --- Additional Comments From cmchugh at callixa