Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
dataFlowInfoTraversal
/
ObjectExpression.fir.kt
blob: 1497b189a2ad2221066a92f5099917f28b43ca7d [
file
]
fun bar
(
x
:
Int
):
Int
=
x
+
1
fun foo
()
{
val x
:
Int
?
=
null
val a
=
object
{
fun baz
()
=
bar
(
if
(
x
==
null
)
0
else
x
)
fun quux
():
Int
=
if
(
x
==
null
)
x
else
x
}
}