// "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) { } } fun test() { val t = Test() t.foo(ArrayList) }