Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
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"
}