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

class B extends A{}