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.
57 lines
1.9 KiB
Swift
57 lines
1.9 KiB
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend %S/Inputs/ncgenerics.swift \
|
|
// RUN: -enable-experimental-feature SuppressedAssociatedTypes \
|
|
// RUN: -emit-module -module-name ncgenerics \
|
|
// RUN: -o %t
|
|
|
|
// RUN: llvm-bcanalyzer %t/ncgenerics.swiftmodule | %FileCheck %s
|
|
|
|
// RUN: %target-typecheck-verify-swift -I %t
|
|
|
|
// RUN: %target-swift-ide-test(mock-sdk: %clang-importer-sdk) \
|
|
// RUN: -enable-experimental-feature SuppressedAssociatedTypes \
|
|
// RUN: -print-module -module-to-print=ncgenerics \
|
|
// RUN: -I %t -source-filename=%s \
|
|
// RUN: | %FileCheck -check-prefix=CHECK-PRINT %s
|
|
|
|
// REQUIRES: swift_feature_SuppressedAssociatedTypes
|
|
|
|
// CHECK-NOT: UnknownCode
|
|
|
|
// CHECK-PRINT-DAG: protocol Generator<Value> {
|
|
// CHECK-PRINT-DAG: enum Maybe<Wrapped> : ~Copyable where Wrapped : ~Copyable {
|
|
// CHECK-PRINT-DAG: extension Maybe : Copyable where Wrapped : Copyable {
|
|
// CHECK-PRINT-DAG: func ncIdentity<T>(_ t: consuming T) -> T where T : ~Copyable
|
|
// CHECK-PRINT-DAG: protocol Either<Left, Right> : ~Copyable {
|
|
// CHECK-PRINT-DAG: associatedtype Left : ~Copyable
|
|
// CHECK-PRINT-DAG: associatedtype Right : ~Copyable
|
|
|
|
import ncgenerics
|
|
|
|
struct TestRequirements: Generator {
|
|
func next() -> Int? { return .none }
|
|
}
|
|
|
|
struct NC: ~Copyable {}
|
|
|
|
struct RegularStruct {}
|
|
|
|
func isItCopyable<T: Copyable>(_ t: T) {}
|
|
// expected-note@-1 {{'where T: Copyable' is implicit here}}
|
|
|
|
func check() {
|
|
var tr = TestRequirements()
|
|
advance(by: 12, &tr)
|
|
|
|
isItCopyable(TestRequirements())
|
|
isItCopyable(RegularStruct())
|
|
isItCopyable(NC()) // expected-error {{global function 'isItCopyable' requires that 'NC' conform to 'Copyable'}}
|
|
|
|
let x: Maybe<NC> = .none
|
|
}
|
|
|
|
struct Witness: Either {
|
|
typealias Left = Maybe<RegularStruct>
|
|
typealias Right = Maybe<NC>
|
|
}
|