blob: 6c2c3833c5869b4e6b36218dd3f15337a306b23f [file] [log] [blame]
// "Add non-null asserted (!!) call" "true"
class SafeType {
operator fun unaryMinus() {}
}
fun safeB(p: SafeType?) {
val v = <caret>-p
}