aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/test_long.java
blob: 3e876ac34e38d4e258fe8b66c7f2af90c4acc8e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class test_long {

  public static void main (String[] arg)
  {
    long a, b, c, d, e;
    e = 234L;
    d = 0x8888888888888888L;
    a = 0x0123456789ABCDEFL;
    b = 0xFEDCBA9876543210L;
    c = 0xF096A5B4C3B2E187L;
    System.out.println (a+" "+b+" "+c+" "+d+" "+e);
  }
}