Files
kotlin-fork/idea/testData/quickfix/expressions/fixNullableInfixWithExclExcl.kt
T

9 lines
149 B
Kotlin
Vendored

// "Add non-null asserted (!!) call" "true"
class SafeType {
infix fun op(arg: Int) {}
}
fun safeB(p: SafeType?) {
val v = p <caret>op 42
}