Skip to content

Commit e9b48ef

Browse files
authored
Merge pull request swiftlang#39997 from ktoso/wip-fix-availability-donc
2 parents 841bd42 + 59f5e84 commit e9b48ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Concurrency/actor_isolation.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -890,12 +890,12 @@ func testCrossActorProtocol<T: P>(t: T) async {
890890
ASPD.sd()
891891
}
892892

893-
@available(SwiftStdlib 5.5, *)
893+
@available(SwiftStdlib 5.1, *)
894894
protocol Server {
895895
func send<Message: Codable>(message: Message) async throws -> String
896896
}
897897

898-
@available(SwiftStdlib 5.5, *)
898+
@available(SwiftStdlib 5.1, *)
899899
actor MyServer : Server {
900900
// okay, asynchronously accessed from clients of the protocol
901901
func send<Message: Codable>(message: Message) throws -> String { "" }

0 commit comments

Comments
 (0)