aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/pr176.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/testsuite/libjava.compile/pr176.java')
-rw-r--r--libjava/testsuite/libjava.compile/pr176.java15
1 files changed, 0 insertions, 15 deletions
diff --git a/libjava/testsuite/libjava.compile/pr176.java b/libjava/testsuite/libjava.compile/pr176.java
deleted file mode 100644
index a52b5bbf808..00000000000
--- a/libjava/testsuite/libjava.compile/pr176.java
+++ /dev/null
@@ -1,15 +0,0 @@
-// 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 {}
- }
-}