refactoring conflicts: pass file context

to check refactorings inside one top level class (IDEA-155681)
This commit is contained in:
Anna.Kozlova
2017-12-08 15:51:27 +01:00
parent 86139931ec
commit 7cf1fa2bd7
4 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
class Outer {
class A {
private void foo() {}
private int i;
}
class B extends A {
final void test() {
foo();
System.out.println(i);
}
}
}