aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.compile/static_init2.java
blob: 8cae968045b1a8d778790b0b79e8b304975d5629 (plain)
1
2
3
4
5
6
7
8
9
class static_init2 {
  static final float two_to_the_30 = 
    (float) (1L << 30);

  static float[] floatValues = {
    (float)1.0,
    (float)two_to_the_30,
  };
}