summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t15/before/test.java
blob: b22cc32ea85b12f6dcef409dbc43de2e5f415d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class Test {
  B f;
  int bar(){
    return f.foo(f);
  }
}
class A {
  /**
  * @param a
  */
  int foo(A a){
    return 0;
  }
}

class B extends A{}