mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
14 lines
579 B
Swift
14 lines
579 B
Swift
// RUN: %target-typecheck-verify-swift -disable-availability-checking -enable-bare-slash-regex -enable-experimental-string-processing
|
|
// RUN: %target-typecheck-verify-swift -disable-availability-checking -enable-experimental-string-processing -enable-bare-slash-regex
|
|
// RUN: %target-typecheck-verify-swift -disable-availability-checking -disable-experimental-string-processing -enable-experimental-string-processing -enable-bare-slash-regex
|
|
|
|
// REQUIRES: swift_in_compiler
|
|
|
|
prefix operator /
|
|
|
|
_ = /x/
|
|
_ = #/x/#
|
|
|
|
@available(SwiftStdlib 5.7, *)
|
|
func foo(_ x: Regex<Substring>) {}
|