IDEADEV-25972
[fedora-idea.git] / testData / refactoring / inlineLocal / IDEADEV950.java.after
blobe86de2882c399c5c75988f27d2f0016a1eaeb143
1 public class IDEADEV950 {
2     void foo () {
3         int door_1 =  0;
4         //Cast should be inserted when inlining, otherwise semantics changes
5         float d1 = ((float) door_1 / NOF_LOOPS);
6     }
8     private static final int NOF_LOOPS = 2;