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

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

class B extends A<Integer> {}