diff --git a/libjava/testsuite/ChangeLog b/libjava/testsuite/ChangeLog
index 5a184ee4c37ae1b3577e41b973077ada6465640c..f1ba6d436d09a4c91ac45a400492fda23d1fce21 100644
--- a/libjava/testsuite/ChangeLog
+++ b/libjava/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2000-03-15  Tom Tromey  <tromey@cygnus.com>
+
+	* libjava.compile/pr176.java: New file, for PR gcj/176.
+
 2000-03-15  Bryce McKinlay  <bryce@albatross.co.nz>
 
 	* libjava.compile/pr172.java: Correct classname to match file name.
diff --git a/libjava/testsuite/libjava.compile/pr176.java b/libjava/testsuite/libjava.compile/pr176.java
new file mode 100644
index 0000000000000000000000000000000000000000..a52b5bbf80880a9de562a4e43966d84e2e847ae2
--- /dev/null
+++ b/libjava/testsuite/libjava.compile/pr176.java
@@ -0,0 +1,15 @@
+// gcj (20000313) reports "Type `x' not found in the declaration of the
+// return type of method `getX'."
+
+public class pr176
+{
+  class A
+  {
+    x getX()
+    {
+      return new x();
+    }
+
+    class x {}
+  }
+}