Files
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

10 lines
248 B
Plaintext

public class IDEADEV950 {
void foo () {
int door_1 = 0;
//Cast should be inserted when inlining, otherwise semantics changes
float d1 = ((float) door_1 / NOF_LOOPS);
}
private static final int NOF_LOOPS = 2;
}