pr21540.java 213 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
public class pr21540
{
    public static final long xxx = 555;
    
    public boolean fn (int v)
    {
	switch (v)
	    {
	    case ((int) xxx >>> 32):
		return true;
	    default:
		return false;
	    }
    }
}