This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: almost a cosmetic bug
- To: Java Discuss List <java at gcc dot gnu dot org>, Olivier <olivier at zipworld dot com dot au>
- Subject: Re: almost a cosmetic bug
- From: Bryce McKinlay <bryce at albatross dot co dot nz>
- Date: Mon, 12 Feb 2001 12:04:38 +1300
- References: <20010212092920.A675@zipworld.com.au>
Olivier wrote:
> Confused? Here an example:
>
> Test test = new Test ();
> boolean b;
>
> b = test.result(); // ok, compile fine
> test.result(); // ok, compile fine
> test.result ; // ok, report a syntax error
> b = test.result ; // WRONG, compiler segfault
>
> gcj --main=Test -o Test Test.java
>
> Test.java: In class `Test':
> Test.java: In method `Test.main(java.lang.String[])':
> Test.java:9: Internal error: Segmentation fault.
> Please submit a full bug report, with preprocessed source if appropriate.
> See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
I've noticed error handling regressions like this recently too. Could you
submit a PR and test case? Thanks.
regards
[ bryce ]