add another test to Misc.java

This commit is contained in:
Joel Dice 2008-01-10 15:47:54 -07:00
parent a17cbf2880
commit a9a0252209

View File

@ -47,6 +47,8 @@ public class Misc {
}
public static void main(String[] args) {
expect(Long.valueOf(231L) == 231L);
long x = 231;
expect((x >> 32) == 0);
expect((x >>> 32) == 0);