summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/typeMigration/t18/after/test.java
blob: 35d9b61c1045a28136dfc3b814152995716202ad (plain)
1
2
3
4
5
6
7
8
9
10
11
import java.util.*;
class Test {
    B f;
    void bar(Set<A> s) {
       for (String s : f) {}
    }
}

class A<Y> extends List<String> {}

class B extends A<Integer> {}