b3a00d65b8
* testsuite/libjava.lang/Divide_2.out * testsuite/libjava.lang/Divide_2.java: New test. From-SVN: r121887
21 lines
250 B
Java
21 lines
250 B
Java
public class Divide_2
|
|
{
|
|
static void poo()
|
|
{
|
|
int n = 4/0;
|
|
}
|
|
public static void main(String[] argv)
|
|
{
|
|
try
|
|
{
|
|
poo();
|
|
}
|
|
catch (ArithmeticException _)
|
|
{
|
|
return;
|
|
}
|
|
|
|
throw new RuntimeException();
|
|
}
|
|
}
|