8 lines
180 B
Kotlin
Vendored
8 lines
180 B
Kotlin
Vendored
package test
|
|
|
|
public open class Max {
|
|
public open fun <T : Any?> max(p0 : Collection<T>?): T? where T : Comparable<T>? {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|