IDEADEV-25972
[fedora-idea.git] / testData / refactoring / inlineParameter / RefFinalLocal.java.after
blob672809fc125ee48e6365453774752de7d7f29915
1 public class A {
2     void test(String s1) {
3         final String s2 = s1;
4         System.out.println(s1);
5         System.out.println(s2);
6     }
8     void callTest() {
9         String s = "";
10         test(s);
11     }