Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
inline
/
getClass.kt
blob: 92d5b9fc067804ecc4734f51b46c79f5aab68729 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun foo
()
{
val cls1
:
Any
?
=
Int
val cls2
:
Any
?
=
null
cls1
?.
let
{
cls2
?.
let
{
var
itClass
=
it
::
class
}
}
}
fun box
():
String
{
foo
()
return
"OK"
}