fun someList(): List = throw Exception() fun doSmth(l: List) {} fun doSmth(a: Any) {} fun bar() { doSmth(someList()) }