mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Friend PR: apple/swift-experimental-string-processing#282. Also remove the `-enable-experimental-pairwise-build-block` flag when building regex modules as the feature is already on by default.
8 lines
424 B
Swift
8 lines
424 B
Swift
// RUN: %target-typecheck-verify-swift -enable-experimental-string-processing -disable-implicit-string-processing-module-import -disable-availability-checking
|
|
// REQUIRES: swift_in_compiler
|
|
|
|
// expected-error @+1 {{missing 'Regex' declaration, probably because the '_StringProcessing' module was not imported properly}}
|
|
let r0 = #/./#
|
|
// expected-error @+1 {{cannot find type 'Regex' in scope}}
|
|
let _: Regex<Substring> = r0
|