diff options
Diffstat (limited to 'libjava/testsuite/libjava.compile/PR11600.java')
-rw-r--r-- | libjava/testsuite/libjava.compile/PR11600.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libjava/testsuite/libjava.compile/PR11600.java b/libjava/testsuite/libjava.compile/PR11600.java new file mode 100644 index 0000000..3cffa73 --- /dev/null +++ b/libjava/testsuite/libjava.compile/PR11600.java @@ -0,0 +1,7 @@ +public class PR11600 implements Cloneable +{ + public Object clone () + { + return super.clone (); + } +} |