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

10 lines
187 B
Kotlin

package test
import java.io.Serializable
public open class AllBoundsInWhen {
public open fun <T> foo() where T: Serializable {
throw UnsupportedOperationException()
}
}