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

9 lines
144 B
Plaintext
Vendored

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