0a69cca066
#KT-9469 fixed
8 lines
117 B
Kotlin
Vendored
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"
|
|
} |