OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [invokethrow.java] - Rev 765

Compare with Previous | Blame | View Log

// Test a `throw' across a libffi call.
 
import java.lang.reflect.*;
 
public class invokethrow
{
  public static void doit () throws Throwable
  {
    throw new Throwable ("hi!");
  }
 
  public static void main (String[] args)
  {
    Class k = invokethrow.class;
    try
      {
	Class[] noargs = new Class[0];
	Method m = k.getMethod ("doit", noargs);
	m.invoke (null, null);
      }
    catch (InvocationTargetException x1)
      {
	System.out.println (x1.getTargetException ().getMessage ());
      }
    catch (UnsupportedOperationException _)
      {
	// Some systems don't support invocation, in which case we
	// will fake a passing result.
	System.out.println ("hi!");
      }
    catch (Throwable _)
      {
      }
  }
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.