Files
kotlin/compiler/testData/loadJava/compiledJavaCompareWithKotlin/kotlinSignature/AllBoundsInWhen.kt
Andrey Breslav 3a9f577d1d All bounds may be specified in 'where' clause
Exception fixed in AlternativeMethodSignatureData
2014-05-13 20:19:43 +04:00

10 lines
198 B
Kotlin

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