cleanup
[fedora-idea.git] / plugins / InspectionGadgets / test / com / siyeh / igtest / confusing / ConfusingFloatingPointLiteralInspection.java
blob065906f0881ab7888aeaef492f55952a2f5e3f43
1 package com.siyeh.igtest.confusing;
3 public class ConfusingFloatingPointLiteralInspection
5 double baz = 0e6;
6 double baz2 = 0.e6;
7 double baz3 = 0.0e6;
8 double baz4 = 0.0e-6;
9 double baz5 = 0.0e-6;
10 double foo = 3.0;
11 double barangus2 = .03;
12 double barangus = 3.;
13 float bazf = 0e6f;
14 float baz2f = 0.e6f;
15 float baz3f = 0.0e6f;
16 float foof = 3.0f;
17 float barangus2f = .03f;
18 float barangusf = 3.f;}