0579604653
#KT-17188 Fixed
19 lines
292 B
Plaintext
Vendored
19 lines
292 B
Plaintext
Vendored
// "Import" "true"
|
|
// ERROR: Classifier 'ArrayList' does not have a companion object, and thus must be initialized here
|
|
|
|
// KT-4000
|
|
|
|
package testing
|
|
|
|
import java.util.ArrayList
|
|
|
|
class Test {
|
|
fun foo(a: Collection<String>) {
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val t = Test()
|
|
t.foo(ArrayList)
|
|
} |