12 lines
286 B
Kotlin
Vendored
12 lines
286 B
Kotlin
Vendored
fun foo(s: List<String>){}
|
|
|
|
fun foo(i: Map<String, Int>){}
|
|
|
|
fun bar(o: Any) {
|
|
foo(o as <caret>)
|
|
}
|
|
|
|
// EXIST: { lookupString:"List", itemText:"List<String>", tailText: " (kotlin)" }
|
|
// EXIST: { lookupString:"Map", itemText:"Map<String, Int>", tailText: " (kotlin)" }
|
|
// NOTHING_ELSE
|