mirror of
https://github.com/apple/swift.git
synced 2026-06-20 15:42:51 +02:00
42 lines
1.2 KiB
Swift
42 lines
1.2 KiB
Swift
//===--- EmptyCollection.swift ----------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2026 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
|
|
|
|
import StdlibUnittest
|
|
|
|
var testSuite = TestSuite("EmptyCollection")
|
|
|
|
struct NonHashable {}
|
|
|
|
if #available(SwiftStdlib 6.4, *) {
|
|
testSuite.test("UnconditionallyHashable") {
|
|
checkHashable(expectedEqual: true, EmptyCollection<AnyHashable>(), EmptyCollection<AnyHashable>())
|
|
checkHashable(expectedEqual: true, EmptyCollection<NonHashable>(), EmptyCollection<NonHashable>())
|
|
}
|
|
}
|
|
|
|
testSuite.test("withContigousStorageIfAvailable")
|
|
.require(.stdlib_6_5).code {
|
|
|
|
struct W: ~Copyable { let i: Int }
|
|
|
|
let zero = EmptyCollection<Int>()
|
|
let wrapped = zero.withContiguousStorageIfAvailable({ W(i: $0.count) })
|
|
if let count = expectNotNil(wrapped) {
|
|
expectEqual(0, count.i)
|
|
}
|
|
}
|
|
|
|
runAllTests()
|