Files
kotlin-fork/compiler/testData/codegen/box/extensionProperties/genericValMultipleUpperBounds.kt
T
2015-10-26 18:36:59 +03:00

8 lines
117 B
Kotlin
Vendored

val <T> T.valProp: T where T : Number, T : Int
get() = this
fun box(): String {
0.valProp
return "OK"
}