summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/refactoring/inlineMethod/SuperInsideHierarchy.java
blob: efb600389acb65349a0c14ed72a7d2ce98b6fc0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class A {
  void foo(){
    //do smth in A
  }
}

class B {
  void <caret>bar() {
    super.foo();
  }

  void test(){
    bar();
  }

  void foo() {
    //do smth
  }
}