summaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/G19990217_01.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/testsuite/libjava.compile/G19990217_01.java')
-rw-r--r--libjava/testsuite/libjava.compile/G19990217_01.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/G19990217_01.java b/libjava/testsuite/libjava.compile/G19990217_01.java
new file mode 100644
index 00000000000..3697dbe230c
--- /dev/null
+++ b/libjava/testsuite/libjava.compile/G19990217_01.java
@@ -0,0 +1,16 @@
+/*-------------------------------------------------------------------------*/
+/* File name : G19990217_01 */
+/* : */
+/* Cause : Compiler seems to run endlessly. */
+/* : */
+/* Message : No message. It's not stop to compile. */
+/*-------------------------------------------------------------------------*/
+
+public class G19990217_01 {
+ int foo() {
+ try {
+ return 0;
+ }
+ finally { ; }
+ }
+}