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
* sr.po: Update.
[official-gcc.git]
/
libjava
/
testsuite
/
libjava.lang
/
test_long.java
blob
3e876ac34e38d4e258fe8b66c7f2af90c4acc8e7
1
class
test_long
{
2
3
public static void
main
(
String
[]
arg
)
4
{
5
long
a
,
b
,
c
,
d
,
e
;
6
e
=
234L
;
7
d
=
0x8888888888888888
L
;
8
a
=
0x0123456789ABCDEF
L
;
9
b
=
0xFEDCBA9876543210
L
;
10
c
=
0xF096A5B4C3B2E187
L
;
11
System
.
out
.
println
(
a
+
" "
+
b
+
" "
+
c
+
" "
+
d
+
" "
+
e
);
12
}
13
}