summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/changeTypeSignature/MethodReturnTypeMigration.java.after
blob: 405cd8a743840e4f8d659442851380bf408e9799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Test {
    interface A<T> {
        T foo();
    }

    class B implements A<Integer> {
        public Integer foo() {
            return null;
        }

        public void bar() {
            Integer s = foo();
        }
    }

}