Commit a70b59e1 by Tom Tromey Committed by Tom Tromey

For PR java/8415:

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

From-SVN: r58732
parent 8df91177
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.
......
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);
}
}
public static void pr8415.meth() throws java.lang.NullPointerException
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment