Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
70b97c5abe682fb7598fc5070d94c39256a0baa4
/
.
/
compiler
/
testData
/
codegen
/
box
/
inline
/
statementAsLastExprInBlock.kt
blob: 6e37834a74b8a46325f867104378991ba1ce4b23 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun foo
()
{
val cls1
:
Any
?
=
Int
val cls2
:
Any
?
=
null
cls1
?.
let
{
if
(
cls2
!=
null
)
{
val zzz
=
42
}
}
}
fun box
():
String
{
foo
()
return
"OK"
}