aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/pr21540.java
blob: 4d6841f8b38a9abb5ec41990137546df105591d9 (plain)
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;
	    }
    }
}