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