// RUN: %target-typecheck-verify-swift -warn-concurrency -disable-availability-checking // 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 { [] } }