mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
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()
|
|
}
|
|
}
|