Files
kotlin-fork/idea/testData/quickfix/autoImports/unresolvedReferenceInCall.kt
T
2015-11-18 14:35:53 +03:00

17 lines
223 B
Kotlin
Vendored

// "Import" "true"
// ERROR: Function invocation 'ArrayList()' expected
// KT-4000
package testing
class Test {
fun foo(a: Collection<String>) {
}
}
fun test() {
val t = Test()
t.foo(<caret>ArrayList)
}