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