blob: a6584aac6d731f51432b2ef707f1d4d5cb935135 [file]
import kotlin.contracts.contract
class A {
var x: Int
get() {
contract {
req
}
fun <expr>doSmth</expr>(i: String) = 4
return doSmth("str")
}
set(value) = Unit
}