Commit 851ac957 by Bryce McKinlay Committed by Bryce McKinlay

Test case for PR 6729.

From-SVN: r53758
parent cbaaba19
2002-05-23 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
* libjava.lang/PR6729.java: New file.
2002-05-04 Mark Wielaard <mark@klomp.org> 2002-05-04 Mark Wielaard <mark@klomp.org>
For PR java/6519: For PR java/6519:
......
public class PR6729
{
static int attr = 0x9;
public static void main(String [] args) {
boolean res = ( ( 1 << attr ) & 0x1000 ) != 0 ;
System.out.println("this should be "+res+": "+isWhite());
}
public static boolean isWhite() {
return ( ( 1 << attr ) & 0x1000 ) != 0 ;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment