gcc/libjava/testsuite/libjava.compile/static_init2.java
Andrew Haley c2584d76af static_init2.java: New file.
2000-07-11  Andrew Haley  <aph@cygnus.com>

        * libjava.compile/static_init2.java: New file.

From-SVN: r34962
2000-07-11 17:45:27 +00:00

10 lines
166 B
Java

class static_init2 {
static final float two_to_the_30 =
(float) (1L << 30);
static float[] floatValues = {
(float)1.0,
(float)two_to_the_30,
};
}