Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
expressions
/
removeUselessCastUnderSmartCast.kt.after
blob: 4c37c56df6fc06d16f85919b6bd439c9ba81d7b4 [
file
] [
log
] [
blame
]
// "Remove useless cast" "true"
fun test
(
x
:
Any
):
String
?
{
if
(
x
is
String
)
{
return
x
}
return
null
}