// Checks the f and F literals

float f1 = 0F;
float f2 = 0f;

_checkEqual(0, f1);
_checkEqual(f2, f1);

