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