12 lines
193 B
Kotlin
Vendored
12 lines
193 B
Kotlin
Vendored
// JVM_FILE_NAME: ContractsKt
|
|
|
|
package test
|
|
|
|
import kotlin.contracts.*
|
|
|
|
@OptIn(ExperimentalContracts::class)
|
|
fun myRequire(x: Boolean) {
|
|
contract {
|
|
returns(true) implies (x)
|
|
}
|
|
} |