blob: f5da9262b2f4f225af2e34ef55f5ee70f2e1ed03 [file] [log] [blame]
fun f(x: Any): Int {
return when (x)
{
is Int->1
else->0
}
}