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
Replace enum gfc_try with bool type.
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
inner2.java
blob
8ecb6f5f7ed4dcccea87a7700a575b1c2e136377
1
// Class inner2
2
// Generated on Mon Dec 6 14:32:34 PST 1999
3
//
4
5
class
inner2
{
6
int
foo
=
1999
;
7
void
foo
()
8
{
9
inner2
.
this
.
foo
=
666
;
10
System
.
out
.
println
(
inner2
.
this
.
foo
);
11
}
12
void
print
() {
System
.
out
.
println
(
foo
);}
13
public static void
main
(
String
[]
arg
)
14
{
15
System
.
out
.
println
(
"Testing class `inner2'..."
);
16
new
inner2
().
foo
();
17
}
18
}