Files
openide/java/java-tests/testData/refactoring/inlineLocal/IDEADEV950.java
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

11 lines
277 B
Java

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