b2397f033b
Review: https://jetbrains.team/p/kt/reviews/7652 I need this API for KTIJ-22692
14 lines
342 B
Kotlin
Vendored
14 lines
342 B
Kotlin
Vendored
// WITH_STDLIB
|
|
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE_K1
|
|
import kotlin.contracts.ExperimentalContracts
|
|
import kotlin.contracts.InvocationKind
|
|
import kotlin.contracts.contract
|
|
|
|
@OptIn(ExperimentalContracts::class)
|
|
fun booleanConstReferenceInImplies(): Boolean {
|
|
contr<caret>act {
|
|
returns(true) implies true
|
|
}
|
|
return true
|
|
}
|