5 lines
88 B
Kotlin
Vendored
5 lines
88 B
Kotlin
Vendored
// PROBLEM: none
|
|
operator fun Int.not() = this * -1
|
|
fun foo() {
|
|
val c = !!<caret>1
|
|
} |