Files
swift-mirror/test/Serialization/Inputs/sending.swift
Michael Gottesman 7592842ee1 [sending] Rename some tests from transferring -> sending.
I am doing this after the main transformation to ease commit by commit
understanding of the change.

rdar://128216574
2024-05-16 21:43:50 -07:00

8 lines
478 B
Swift

public func testTransferring(_ x: transferring String) -> transferring String { x }
public func testSending(_ x: sending String) -> sending String { x }
public func testTransferringFunc(_ x: (transferring String) -> ()) { fatalError() }
public func testSendingFunc(_ x: (sending String) -> ()) { fatalError() }
public func testTransferringResultFunc(_ x: () -> transferring String) { fatalError() }
public func testSendingResultFunc(_ x: () -> sending String) { fatalError() }