7b432c878a
(class/package qualifier in non-qualifier position).
17 lines
275 B
Kotlin
Vendored
17 lines
275 B
Kotlin
Vendored
// "Import" "true"
|
|
// ERROR: Please specify constructor invocation; classifier 'ArrayList' does not have a companion object
|
|
|
|
// KT-4000
|
|
|
|
package testing
|
|
|
|
class Test {
|
|
fun foo(a: Collection<String>) {
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val t = Test()
|
|
t.foo(<caret>ArrayList)
|
|
} |