repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* c-c++-common/ubsan/float-cast-overflow-6.c: Add i?86-*-* target.
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
Divide_2.java
blob
6f2bac81cabff76764299730efc9fc53215726dd
1
public class
Divide_2
2
{
3
static void
poo
()
4
{
5
int
n
=
4
/
0
;
6
}
7
public static void
main
(
String
[]
argv
)
8
{
9
try
10
{
11
poo
();
12
}
13
catch
(
ArithmeticException _
)
14
{
15
return
;
16
}
17
18
throw new
RuntimeException
();
19
}
20
}