mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-19 17:15:02 +08:00
10 lines
166 B
Java
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,
|
||
|
};
|
||
|
}
|