Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
analysis
/
low-level-api-fir
/
testData
/
inBlockModification
/
memberGetterWithBodyWithContractWithoutNameScript.kts
blob: d52958bf2a549d43804169a10e3cd4ee418e6a3c [
file
]
import
kotlin
.
contracts
.
contract
class
A
{
var
:
Int
get
()
{
contract
{
req
}
fun
<expr>
doSmth
</
expr
>(
i
:
String
)
=
4
return
doSmth
(
"str"
)
}
set
(
value
)
=
Unit
}