Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/library/Max.kt
2014-07-25 21:19:38 +04:00

8 lines
179 B
Kotlin

package test
public open class Max {
public open fun max<T : Any?>(p0 : Collection<T>?): T? where T : Comparable<T>? {
throw UnsupportedOperationException()
}
}