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

Subversion Repositories openrisc

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

Compare with Previous | Blame | View Log

public class initexc
{
  public static class fail
  {
    static
    {
      // Static initializers must be able to complete normally.
      if (true)
	throw new NullPointerException("nope");
    }
 
    public static int val ()
    {
      return 23;
    }
  }
 
  public static void main (String[] args)
  {
    try
      {
	System.out.println (fail.val ());
      }
    catch (ExceptionInInitializerError _)
      {
	// Ok.
      }
    try
      {
	System.out.println (fail.val ());
      }
    catch (NoClassDefFoundError _)
      {
	// Ok.
      }
  }
}
 

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.