Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
addExclExclCall
/
iterable.kt
blob: 5301cd62e1067ee22f27d117b9747219ee6fd199 [
file
] [
log
] [
blame
]
// "Add non-null asserted (!!) call" "true"
fun foo
()
{
val test
:
Collection
<
Int
>?
=
null
!!
for
(
i
in
<caret>
test
)
{
}
}