Avatar
@swift-5.10.1 @swift-5.9.2 struct Box {} struct AsyncBox {} func f(_ a: Box) { print("sync") } func f(_ a: AsyncBox) async { print("async") } await f(.init())