Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
doubleLambdaArgument.fir.kt
blob: b889bb2c9b11a3f6ee77d599238db5d3c0c28b0d [
file
]
interface
Foo
fun foo
():
Foo
?
=
null
val foo
:
Foo
=
run
{
run
{
val x
=
foo
()
if
(
x
==
null
)
throw
Exception
()
x
}
}