Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
funcLiteralArgsInsideUnresolvedFunction.fir.kt
blob: a98b13293403d7cdad634e5953355077755e0520 [
file
]
package
a
fun foo
()
{
val i
:
Int
?
=
42
if
(
i
!=
null
)
{
<!
UNRESOLVED_REFERENCE
!>
doSmth
<!>
{
val x
=
i
+
1
}
}
}