If you try to inline "a", in "a + b " (line 4)

        final String
            a = "a",
            b= "b";
        System.out.println( a + b );
     
                           
IDEA deletes the first 3 lines and incorrectly produces :

        System.out.println( "a" + b );

Alain Ravet

_______________________________________________
Eap-list mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-list

Reply via email to