Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
patternMatching
/
pattern.kt
blob: e87965a0fc8ca4bbe2858e39df247e3f7df774cd [
file
]
fun isString
(
x
:
Any
)
=
when
(
x
)
{
is
String
->
"string"
else
->
"something"
}