Files
swift-mirror/test/Distributed/Inputs/dynamic_replacement_da_extension.swift
2022-03-16 08:35:35 +09:00

21 lines
629 B
Swift

//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2021 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of Swift project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import Distributed
extension DA {
@_dynamicReplacement(for:_remote_hello(other:))
nonisolated func _impl_hello(other: DA) async throws {}
}