void main() { int i = 3; test((float)i); test((int)(float)i); test((float)(int)(float)i); float f = 4.2; test((int)f); test((float)(int)f); test((int)(float)(int)f); test((float)6 / 5.0); test(6 / (int)5.0); }