blob: a9529f5d4a9f008c572c7059be2000420021a6ee [file] [log] [blame]
// Testcase for Issue 696
// https://github.com/typetools/checker-framework/issues/696
import java.util.List;
import java.util.Map;
public class Issue696 {
public static void test(final List<? extends Map.Entry<byte[], byte[]>> input) {}
}