Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
cli
/
jvm
/
legacySmartCastsAfterTry.kt
blob: 02cd99b5913f46508347e69336eadcfb70a72718 [
file
]
fun foo
()
{
var
some
:
String
?
=
null
some
=
"alpha"
try
{
some
=
"omega"
}
catch
(
e
:
Exception
)
{}
some
.
length
}