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
* gcc.dg/tree-ssa/alias-30.c (dg-options): Dump only fre1 details.
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
PR5057_2.java
blob
8e789ff34a23388e5846aa157bb76b1763a22a9e
1
/* Test to make sure <clinit> is generated correctly. */
2
3
class
R
4
{
5
public static int
z
=
23
;
6
}
7
8
public class
PR5057_2
extends
R
9
{
10
static
11
{
12
R
.
z
=
72
;
13
}
14
15
public static void
main
(
String
[]
args
)
16
{
17
System
.
out
.
println
(
R
.
z
);
18
}
19
}