mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Find all the usages of `--enable-experimental-feature` or `--enable-upcoming-feature` in the tests and replace some of the `REQUIRES: asserts` to use `REQUIRES: swift-feature-Foo` instead, which should correctly apply to depending on the asserts/noasserts mode of the toolchain for each feature. Remove some comments that talked about enabling asserts since they don't apply anymore (but I might had miss some). All this was done with an automated script, so some formatting weirdness might happen, but I hope I fixed most of those. There might be some tests that were `REQUIRES: asserts` that might run in `noasserts` toolchains now. This will normally be because their feature went from experimental to upcoming/base and the tests were not updated.
35 lines
1.5 KiB
Swift
35 lines
1.5 KiB
Swift
// RUN: %target-typecheck-verify-swift -disable-availability-checking -enable-experimental-feature SendingArgsAndResults -strict-concurrency=complete -enable-upcoming-feature RegionBasedIsolation
|
|
|
|
// REQUIRES: swift_feature_RegionBasedIsolation
|
|
// REQUIRES: swift_feature_SendingArgsAndResults
|
|
|
|
func testArg(_ x: sending String) {
|
|
}
|
|
|
|
func testResult() -> sending String {
|
|
""
|
|
}
|
|
|
|
func testArgResult(_ x: sending String) -> sending String {
|
|
}
|
|
|
|
func testVarDeclDoesntWork() {
|
|
var x: sending String // expected-error {{'sending' may only be used on parameter}}
|
|
}
|
|
|
|
func testVarDeclTupleElt() -> (sending String, String) {} // expected-error {{'sending' cannot be applied to tuple elements}}
|
|
|
|
func testVarDeclTuple2(_ x: (sending String)) {}
|
|
func testVarDeclTuple2(_ x: (sending String, String)) {} // expected-error {{'sending' cannot be applied to tuple elements}}
|
|
|
|
func testArgWithConsumingWrongOrder(_ x: sending consuming String, _ y: sending inout String) {}
|
|
// expected-error @-1 {{'sending' must be placed after specifier 'consuming'}}
|
|
// expected-error @-2 {{'sending' must be placed after specifier 'inout'}}
|
|
|
|
func testArgWithConsumingWrongOrderType(_ x: (sending consuming String, sending inout String) -> ()) {}
|
|
// expected-error @-1 {{'sending' must be placed after specifier 'consuming'}}
|
|
// expected-error @-2 {{'sending' must be placed after specifier 'inout'}}
|
|
|
|
func testBorrowSending(_ x: borrowing sending String) {}
|
|
// expected-error @-1 {{'sending' cannot be used together with 'borrowing'}}
|