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
* config/aarch64/aarch64.c (aarch64_legitimize_address): New function.
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
pr184.java
blob
42175b38e9d174f2565cb8b66550a06c894fb456
1
public class
pr184
2
{
3
public static void
main
(
String
[]
args
)
4
{
5
pr184 n
=
null
;
6
try
7
{
8
n
.
foo
();
9
}
10
catch
(
NullPointerException x
)
11
{
12
System
.
out
.
println
(
x
);
13
}
14
}
15
16
int
x
=
2
;
17
18
final int
foo
()
19
{
20
return
x
;
21
};
22
}