// RUN: %target-typecheck-verify-swift -strict-concurrency=complete -target %target-swift-5.7-abi-triple // REQUIRES: concurrency // REQUIRES: distributed import Distributed actor Charlie { // should not cause sendable warnings, Worker is Sendable as implied by DA func two() -> Set where Worker: DistributedActor { [] } }