Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
FunctionLiteral.kt
blob: 31efbeeabc3b1380963d8980f62194ef48929c90 [
file
] [
log
] [
blame
]
fun bar
(
x
:
Int
)
=
x
+
1
fun foo
()
{
val x
:
Int
?
=
null
fun baz
()
=
bar
(<!
TYPE_MISMATCH
!>
x
<!>)
fun quux
()
=
if
(
x
!=
null
)
bar
(<!
DEBUG_INFO_SMARTCAST
!>
x
<!>)
else
baz
()
fun quuux
()
=
bar
(
if
(
x
==
null
)
0
else
<!
DEBUG_INFO_SMARTCAST
!>
x
<!>)
}