blob: 35ebfccf6de61dc9cf1e2c436cc5e6cb1d079d17 [file] [log] [blame]
// SKIP_IN_RUNTIME_TEST
package test;
import java.util.Map;
public class MapRemove {
public abstract class MyMap<K, V> implements Map<K, V> {
public boolean remove(Object x, Object y) { return false; }
}
public abstract class MyMapString implements Map<String, Integer> {
public boolean remove(Object x, Object y) { return false; }
}
public abstract class MyMapStringInvalid implements Map<String, Integer> {
public boolean remove(String x, Integer y) { return false; }
}
}