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
stmt.c (expand_return): If asked to return the RESULT_DECL, just call expand_value_re...
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.cni
/
longfield.java
blob
917bf953a051115535af67922a0801fb2708d520
1
public class
longfield
2
{
3
long
lval
=
232300
;
4
boolean
bval
=
true
;
5
String sval
=
"maude"
;
6
7
public native void
doitc
();
8
9
public void
doitj
()
10
{
11
System
.
out
.
println
(
lval
);
12
System
.
out
.
println
(
bval
);
13
System
.
out
.
println
(
sval
);
14
}
15
16
public static void
main
(
String
[]
args
)
17
{
18
longfield f
=
new
longfield
();
19
f
.
doitc
();
20
f
.
doitj
();
21
}
22
}