Fix for KT-11375, KT-9710, KT-8161

This commit is contained in:
Simon Ogorodnik
2016-10-11 11:39:13 +03:00
parent df0dddedc2
commit 25b9542c06
12 changed files with 72 additions and 13 deletions
@@ -0,0 +1,9 @@
public class Exponent {
private final float[] floats = {
5e5f, +5e5f, -5e5f, 5e+5f, 5e-5f,
5E5f, +5E5f, -5E5f, 5E+5f, 5E-5f,
2.5e5f, +2.5e5f, -2.5e5f, 2.5e+5f, 2.5e-5f,
2.5E5f, +2.5E5f, -2.5E5f, 2.5E+5f, 2.5E-5f,
5e5f, 5e5F
};
}