Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
simplifyAssertNotNull
/
withMessage.kt.after
blob: 0a6eca3fc237179a38568fdc5c61729161be8881 [
file
] [
log
] [
blame
]
// INTENTION_TEXT: "Replace with '?: error(...)'"
// WITH_RUNTIME
fun foo
(
p
:
Array
<
String
?>)
{
val v
=
p
[
0
]
<caret>
?:
error
(
"Should be not null"
)
}