aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/PR16701.java
blob: 60d459a69c7691fe64d78955fbf677551dd224f1 (plain)
1
2
3
4
5
6
7
8
9
10
class Cl
{
  private static final int CONSTANT1 = 0x001;
  public static final int CONSTANT2 = 0x002 >> CONSTANT1;
}

public class PR16701
{
  public static final int VALUE = Cl.CONSTANT2;
}