summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t139/after/test.java
blob: d91661b683090ec058147137225833b08f8be115 (plain)
1
2
3
4
5
6
7
8
9
10
import java.util.*;

abstract class A implements Iterable<String> {}

class Test {
  void test(A it) {
    for(Integer s : it) {
    }
  }
}