Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
expressions
/
fixNullableUnaryWithExclExcl.kt
blob: 6c2c3833c5869b4e6b36218dd3f15337a306b23f [
file
] [
log
] [
blame
]
// "Add non-null asserted (!!) call" "true"
class
SafeType
{
operator
fun unaryMinus
()
{}
}
fun safeB
(
p
:
SafeType
?)
{
val v
=
<caret>
-
p
}