3a9f577d1d
Exception fixed in AlternativeMethodSignatureData
10 lines
198 B
Kotlin
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()
|
|
}
|
|
}
|