2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / testsuite / libjava.lang / PR6729.java
blob58dac182d2f31b277685b38bc52b61805f48cc74
1 public class PR6729
3 static int attr = 0x9;
5 public static void main(String [] args) {
6 boolean res = ( ( 1 << attr ) & 0x1000 ) != 0 ;
7 System.out.println("this should be "+res+": "+isWhite());
10 public static boolean isWhite() {
11 return ( ( 1 << attr ) & 0x1000 ) != 0 ;