f0d8a1cbe9
^KT-60518
13 lines
181 B
Kotlin
13 lines
181 B
Kotlin
import kotlin.contracts.contract
|
|
|
|
class A {
|
|
fun x() {
|
|
contract {
|
|
req
|
|
}
|
|
|
|
val a = <expr>doSmth("str")</expr>
|
|
}
|
|
}
|
|
|
|
fun doSmth(i: String) = 4 |