blob: 1ba8b2198d5026c4e134c93d43580cfacea2bb21 [file] [log] [blame]
// RUN: %target-swift-ide-test -code-completion -source-filename %s -code-completion-token=HERE -code-completion-diagnostics 2> %t.err.txt
// RUN: %FileCheck %s -input-file=%t.err.txt
// CHECK: cannot find 'foo11' in scope
// CHECK-NOT: did you mean
func foo12() -> Int { return 0 }
class C {
var p = foo11()
}
C().#^HERE^#