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