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