For PR java/8415:

* libjava.lang/pr8415.java: New file.
	* libjava.lang/pr8415.out: New file.

From-SVN: r58732
This commit is contained in:
Tom Tromey 2002-11-02 00:19:52 +00:00 committed by Tom Tromey
parent 8df91177c0
commit a70b59e1db
3 changed files with 20 additions and 0 deletions

View File

@ -1,5 +1,9 @@
2002-11-01 Tom Tromey <tromey@redhat.com>
For PR java/8415:
* libjava.lang/pr8415.java: New file.
* libjava.lang/pr8415.out: New file.
* libjava.mauve/mauve.exp (find_mauve_sources): New proc.
(test_mauve): Use it.
(test_mauve_sim): Likewise.

View File

@ -0,0 +1,15 @@
import java.lang.reflect.*;
public class pr8415
{
public static void meth () throws NullPointerException
{
throw new NullPointerException();
}
public static void main(String[] args) throws Throwable
{
Class k = pr8415.class;
Method m = k.getMethod ("meth", new Class[0]);
System.out.println(m);
}
}

View File

@ -0,0 +1 @@
public static void pr8415.meth() throws java.lang.NullPointerException