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
FDO insane profile
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
PR6085.java
blob
f883bb5f83869152e02f6ef9dc720f5c3e60fc29
1
public class
PR6085
2
{
3
public static void
main
(
String
[]
args
)
4
{
5
F1 f1
=
new
F1
();
6
}
7
8
static class
F1
9
{
10
F11 f11
;
11
F12 f12
;
12
13
F1
()
14
{
15
f12
=
new
F12
();
16
System
.
out
.
println
(
f12
.
i
);
17
System
.
out
.
println
(
f12
.
k
);
18
}
19
20
class
F11
21
{
22
int
k
=
90
;
23
F11
() {}
24
}
25
26
class
F12
extends
F11
27
{
28
int
i
;
29
F12
()
30
{
31
i
=
17
;
32
}
33
}
34
}
35
}