mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
10 lines
198 B
Java
Vendored
10 lines
198 B
Java
Vendored
package test;
|
|
|
|
import java.util.*;
|
|
|
|
public class MethodWithGenerics {
|
|
public String foo(String a, List<Map.Entry<String, String>> b) {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|