blob: 8a10b245a2f46bb60247ac74fb2e1e38d0121342 [file] [log] [blame]
// @skip-test Crashes the Checker Framework, but skipped to avoid breaking the build
import java.util.AbstractMap;
import java.util.Map;
public class SamFileValidator {
private class Codec {
public Map.Entry<String, String> decode() {
return new AbstractMap.SimpleEntry("hello", "goodbye");
}
}
}