mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-24 08:31:30 +00:00
14 lines
333 B
Java
Vendored
14 lines
333 B
Java
Vendored
package test;
|
|
|
|
import java.util.*;
|
|
|
|
public class MethodWithMappedClasses {
|
|
public <T> void copy(List<? super T> dest, List<T> src) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
|
|
public <T> void copyMap(Map<String, ? super T> dest, Map<String, T> src) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|