mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
301 B
Java
Vendored
11 lines
301 B
Java
Vendored
import java.lang.*;
|
|
import java.util.*;
|
|
|
|
public class Test {
|
|
public static class MapEntryImpl implements Map.Entry<String, String> {
|
|
public String getKey() { return null; }
|
|
public String getValue() { return null; }
|
|
public String setValue(String s) { return null; }
|
|
}
|
|
}
|