mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* Obsolete ModifierSlice typealiases in 5.0 * Obsolete *Indexable in 5.0 * Obsolete IteratorOverOne/EmptyIterator in 5.0 * Obsolete lazy typealiases in 5.0 * Drop .characters from tests * Obsolete old literal protocols in 5.0 * Obsolete Range conversion helpers in 5.0 * Obsolete IndexDistance helpers in 5.0 * Obsolete Unsafe compat helpers in 5.0 * Obsolete flatMap compatibility helper in 5.0 * Obsolete withMutableCharacters in 5.0 * Obsolete customPlaygroundQuickLook in 5.0 * Deprecate Zip2Sequence streams in 5.0 * Replace * with swift on lotsa stuff * Back off obsoleting playground conformances for now
54 lines
1.8 KiB
Swift
54 lines
1.8 KiB
Swift
//===--- KeyValuePairs.swift ------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// RUN: %target-run-simple-swift
|
|
// REQUIRES: executable_test
|
|
|
|
// REQUIRES: objc_interop
|
|
|
|
import Foundation
|
|
import StdlibUnittest
|
|
|
|
|
|
// Check that the generic parameters are called 'Key' and 'Value'.
|
|
protocol TestProtocol1 {}
|
|
|
|
extension KeyValuePairs where Key : TestProtocol1, Value : TestProtocol1 {
|
|
var _keyAndValueAreTestProtocol1: Bool {
|
|
fatalError("not implemented")
|
|
}
|
|
}
|
|
|
|
func checkAssociatedTypes() {
|
|
typealias Subject = KeyValuePairs<MinimalHashableValue, OpaqueValue<Int>>
|
|
expectRandomAccessCollectionAssociatedTypes(
|
|
collectionType: Subject.self,
|
|
iteratorType: IndexingIterator<Subject>.self,
|
|
subSequenceType: Slice<Subject>.self,
|
|
indexType: Int.self,
|
|
indicesType: CountableRange<Int>.self)
|
|
}
|
|
|
|
var strings: KeyValuePairs = ["a": "1", "b": "Foo"]
|
|
expectType(KeyValuePairs<String, String>.self, &strings)
|
|
|
|
var stringNSStringLiteral: KeyValuePairs = [
|
|
"a": "1", "b": "Foo" as NSString]
|
|
expectType(KeyValuePairs<String, NSString>.self, &stringNSStringLiteral)
|
|
|
|
let aString = "1"
|
|
let anNSString = "Foo" as NSString
|
|
var stringNSStringLet: KeyValuePairs = [ "a": aString as NSString, "b": anNSString]
|
|
expectType(KeyValuePairs<String, NSString>.self, &stringNSStringLet)
|
|
|
|
var hetero: KeyValuePairs = ["a": 1 as NSNumber, "b": "Foo" as NSString]
|
|
expectType(KeyValuePairs<String, NSObject>.self, &hetero)
|