summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/refactoring/wildcard/threadLocalProducerExtends/before/test.java
blob: 8df669c778995810f29a9a9c8fc0a5f63eb228d5 (plain)
1
2
3
4
5
6
7
import java.util.*;

class Test {
  void method(List<String> l) {
    l.add("");
  }
}