summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/refactoring/typeMigration/t139/before/test.java
blob: f937525f52e20e90639b8abd7327d37c223279b0 (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(String s : it) {
    }
  }
}