orangy
val f = { it:Any?-> when (it) { is String -> it else -> throw RuntimeException() } }
f
(Any?)->Any?