// RUN: %target-swift-ide-test -annotate -source-filename %s | %FileCheck %s
// REQUIRES: objc_interop
// CHECK: import Foundation
import Foundation
// CHECK: import ObjectiveC.NSObject
import ObjectiveC.NSObject
func foo(c1: NSObject, c2: NSObject) {
// CHECK: c1 == c2
c1 == c2
}