mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
7 lines
105 B
Java
Vendored
7 lines
105 B
Java
Vendored
package foo;
|
|
import java.util.*;
|
|
|
|
public interface B<T> {
|
|
B<String> foo(List<String> x, String y);
|
|
}
|