Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
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
}
}
}