mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
8 lines
170 B
Java
Vendored
8 lines
170 B
Java
Vendored
import java.util.Collection;
|
|
|
|
public class unrelatedUpperBounds {
|
|
public static <T extends CharSequence & java.io.Serializable> T id(T p) {
|
|
return p;
|
|
}
|
|
}
|