Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
sam
/
castFromAny.kt
blob: d843ac6884771922e29bb5c3b92dc8dd7b12614b [
file
]
// TARGET_BACKEND: JVM
fun test
(
a
:
Any
?)
{
a
as
()
->
Unit
Runnable
(
a
).
run
()
}
fun box
():
String
{
var
result
=
"Fail"
test
{
result
=
"OK"
}
return
result
}