Files
kotlin-fork/idea/testData/inspectionsLocal/doubleNegation/invalid.kt
T

5 lines
88 B
Kotlin
Vendored

// PROBLEM: none
operator fun Int.not() = this * -1
fun foo() {
val c = !!<caret>1
}