286eecffc5
#KT-4000 Fixed
13 lines
161 B
Kotlin
13 lines
161 B
Kotlin
class Test {
|
|
fun foo(a: Collection<String>) {
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val t = Test()
|
|
t.foo(Array<caret>)
|
|
}
|
|
|
|
// EXIST: ArrayList
|
|
// INVOCATION_COUNT: 2 |