9 lines
149 B
Kotlin
Vendored
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
|
|
} |