diff --git a/libjava/testsuite/ChangeLog b/libjava/testsuite/ChangeLog index eeae07fe35d602c5024a98060517ae7d149761cd..f3b24dd2c6b947e38c0c8ad0c59df84d1b9dbcc1 100644 --- a/libjava/testsuite/ChangeLog +++ b/libjava/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2000-04-14 Bryce McKinlay <bryce@albatross.co.nz> + + Additional test for PR gcj/148: + * libjava.compile/assignment_2.java: New file. + 2000-03-28 Bryce McKinlay <bryce@albatross.co.nz> Test case for PR libgcj/184: diff --git a/libjava/testsuite/libjava.compile/assignment_2.java b/libjava/testsuite/libjava.compile/assignment_2.java new file mode 100644 index 0000000000000000000000000000000000000000..38b58db76ee21aa51cc8a38958ee7fcdf4fbb89b --- /dev/null +++ b/libjava/testsuite/libjava.compile/assignment_2.java @@ -0,0 +1,32 @@ + +/** + * assignment_2.java + * + * + * Created: Thu Apr 13 16:48:40 2000 + * + * @author Oliver Brandt + * @version + */ + +public class assignment_2 { + public assignment_2 () + { + } + + public int foo () + { + int result; + + try + { + result = 0; + } + finally + { + } + return result; + + } + +}// test