OSDN Git Service

2004-09-24 Andrew Haley <aph@redhat.com>
authoraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 24 Sep 2004 13:55:42 +0000 (13:55 +0000)
committeraph <aph@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 24 Sep 2004 13:55:42 +0000 (13:55 +0000)
        PR java/16927
        * testsuite/libjava.compile/AssertBug.java: New file.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88035 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/testsuite/libjava.compile/AssertBug.java [new file with mode: 0644]

index 8580a9f..db9463e 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-24  Andrew Haley  <aph@redhat.com>
+
+       PR java/16927
+       * testsuite/libjava.compile/AssertBug.java: New file.
+
 2004-09-24  Casey Marshall <csm@gnu.org>
 
        * java/util/PropertyPermissionCollection.java
diff --git a/libjava/testsuite/libjava.compile/AssertBug.java b/libjava/testsuite/libjava.compile/AssertBug.java
new file mode 100644 (file)
index 0000000..3938b11
--- /dev/null
@@ -0,0 +1,7 @@
+// PR java/16927
+public class AssertBug {
+    public void bug(Integer i) {
+        assert(false):
+            i.toString() + "!";
+    }
+}