24794741ff
#KT-4000 In Progress
17 lines
271 B
Kotlin
17 lines
271 B
Kotlin
// "Import" "true"
|
|
// ERROR: Please specify constructor invocation; classifier 'ArrayList' does not have a class object
|
|
|
|
// KT-4000
|
|
|
|
package testing
|
|
|
|
class Test {
|
|
fun foo(a: Collection<String>) {
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val t = Test()
|
|
t.foo(<caret>ArrayList)
|
|
} |