Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
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
}