blob: 49f4f0d646508997d2b4ef3a69d2ed59f1980b44 [file]
fun <T> someList(): List<T> = throw Exception()
fun <T> doSmth(l: List<T>) {}
fun doSmth(a: Any) {}
fun bar() {
<caret>doSmth(someList())
}