blob: 3686bd2542f1c64e933ede33bba052260b878499 [file] [log] [blame]
package test;
import java.util.*;
public class MethodWithGenerics {
public String foo(String a, List<Map.Entry<String, String>> b) {
throw new UnsupportedOperationException();
}
}