Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
regression
/
kt2082.kt
blob: ef0fb6f3b8b3bbe03c0694a377215e205eee0356 [
file
]
fun foo
(
c
:
Collection
<
String
>)
=
{
c
.
filter
{
val s
:
String
?
=
bar
()
if
(
s
==
null
)
false
// here!
zoo
(<!
TYPE_MISMATCH
!>
s
<!>)
}
}
fun bar
()
:
String
?
=
null
fun zoo
(
s
:
String
)
:
Boolean
=
true