Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
expressions
/
removeUselessCastUnderSmartCast.kt
blob: 241546de1f11a8d64066dddb6ac4216e3f88e4cc [
file
] [
log
] [
blame
]
// "Remove useless cast" "true"
fun test
(
x
:
Any
):
String
?
{
if
(
x
is
String
)
{
return
x
<caret>
as
String
}
return
null
}