Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
simple
/
safeCall.1.kt
blob: 4891862f4edf82cc41a2cae6636d374ab6e9dd87 [
file
]
import
test
.*
fun box
():
String
{
var
result
=
"fail"
W
(
"OK"
).
safe
{
result
=
this
as
String
}
return
result
}