7546a17539
#KT-4914 Fixed
12 lines
237 B
Kotlin
12 lines
237 B
Kotlin
fun foo(s: List<String>){}
|
|
|
|
fun foo(i: Map<String, Int>){}
|
|
|
|
fun bar(o: Any) {
|
|
foo(o as <caret>)
|
|
}
|
|
|
|
// NUMBER: 2
|
|
// EXIST: { lookupString:"List", itemText:"List<String>" }
|
|
// EXIST: { lookupString:"Map", itemText:"Map<String, Int>" }
|