mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
10 lines
187 B
Kotlin
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()
|
|
}
|
|
}
|