mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
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()
|
|
}
|
|
}
|