public func unspecifiedAsync(_ t: T) async { } @execution(caller) public func unspecifiedAsyncCaller(_ t: T) async { } @execution(concurrent) public func unspecifiedAsyncConcurrent(_ t: T) async { } nonisolated public func nonisolatedAsync(_ t: T) async { } @execution(caller) nonisolated public func nonisolatedAsyncCaller(_ t: T) async { } @execution(concurrent) nonisolated public func nonisolatedAsyncConcurrent(_ t: T) async { } public struct S { public init() {} public func unspecifiedAsync(_ t: T) async { } @execution(caller) public func unspecifiedAsyncCaller(_ t: T) async { } @execution(concurrent) public func unspecifiedAsyncConcurrent(_ t: T) async { } nonisolated public func nonisolatedAsync(_ t: T) async { } @execution(caller) nonisolated public func nonisolatedAsyncCaller(_ t: T) async { } @execution(concurrent) nonisolated public func nonisolatedAsyncConcurrent(_ t: T) async { } }