mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
39 lines
2.3 KiB
Swift
39 lines
2.3 KiB
Swift
// NB: Repetitions are intentional. We are testing that a diagnostic is emitted
|
|
// for each option, not just the last one found.
|
|
|
|
// RUN: %target-swift-frontend -parse -swift-version 6 \
|
|
// RUN: -enable-upcoming-feature ExistentialAny:invalid1 \
|
|
// RUN: -enable-upcoming-feature ExistentialAny:migrate \
|
|
// RUN: -enable-experimental-feature ExistentialAny:invalid2 \
|
|
// RUN: -enable-experimental-feature ExistentialAny:migrate \
|
|
// RUN: -disable-upcoming-feature ExistentialAny:migrate \
|
|
// RUN: -disable-experimental-feature ExistentialAny:migrate \
|
|
// RUN: %s 2>&1 | %FileCheck %s --check-prefix=CHECK-SWIFT-5
|
|
|
|
// RUN: %target-swift-frontend -parse -swift-version 7 \
|
|
// RUN: -enable-upcoming-feature ExistentialAny:invalid1 \
|
|
// RUN: -enable-upcoming-feature ExistentialAny:migrate \
|
|
// RUN: -enable-experimental-feature ExistentialAny:invalid2 \
|
|
// RUN: -enable-experimental-feature ExistentialAny:migrate \
|
|
// RUN: -disable-upcoming-feature ExistentialAny:migrate \
|
|
// RUN: -disable-experimental-feature ExistentialAny:migrate \
|
|
// RUN: %s 2>&1 | %FileCheck %s --check-prefix=CHECK-SWIFT-7
|
|
|
|
// REQUIRES: swift_feature_ExistentialAny
|
|
// REQUIRES: asserts
|
|
|
|
// CHECK-NOT: error:
|
|
|
|
// CHECK-SWIFT-5-NOT: warning:
|
|
// CHECK-SWIFT-5: warning: '-disable-experimental-feature' argument 'ExistentialAny:migrate' cannot specify a mode [#StrictLanguageFeatures]{{$}}
|
|
// CHECK-SWIFT-5-NEXT: warning: '-disable-upcoming-feature' argument 'ExistentialAny:migrate' cannot specify a mode [#StrictLanguageFeatures]{{$}}
|
|
// CHECK-SWIFT-5-NEXT: warning: 'invalid2' is not a recognized mode for feature 'ExistentialAny'; did you mean 'migrate'? [#StrictLanguageFeatures]{{$}}
|
|
// CHECK-SWIFT-5-NEXT: warning: 'invalid1' is not a recognized mode for feature 'ExistentialAny'; did you mean 'migrate'? [#StrictLanguageFeatures]{{$}}
|
|
// CHECK-SWIFT-5-NOT: warning:
|
|
|
|
// CHECK-SWIFT-7-NOT: warning:
|
|
// CHECK-SWIFT-7-COUNT-6: warning: upcoming feature 'ExistentialAny' is already enabled as of Swift version 7{{$}}
|
|
// CHECK-SWIFT-7-NOT: warning:
|
|
|
|
// CHECK-NOT: error:
|