blob: d8da646d872c4d7b30f5b32fc8d377b65fca6c9a [file] [log] [blame]
// RUN: %target-swift-frontend(mock-sdk: %clang-importer-sdk) -typecheck %s -verify
// REQUIRES: objc_interop
import Security
_ = kSecClass as CFString
_ = kSecClassGenericPassword as CFString
_ = kSecClassGenericPassword as CFDictionary // expected-error {{'CFString!' is not convertible to 'CFDictionary'}} {{30-32=as!}}
func testIntegration() {
// Based on code in <rdar://problem/17162475>.
let query = [kSecClass as NSString: kSecClassGenericPassword] as NSDictionary as CFDictionary
var dataTypeRef: Unmanaged<AnyObject>?
let status = SecItemCopyMatching(query, &dataTypeRef)
if status == errSecSuccess {
if let filledRef = dataTypeRef {
let str: NSString = filledRef.takeRetainedValue() as! NSString
print("Got: \(str)")
}
}
}
func testAuthorizationIsNotCF() {
var auth: AuthorizationRef?
_ = AuthorizationCreate(&auth)
_ = AuthorizationFree(auth)
}