mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This reverts commita67a0436f7, reversing changes made to9965df76d0. This commit or the earlier commit this commit is based on (#40531) broke the incremental bot.
12 lines
293 B
Swift
12 lines
293 B
Swift
// RUN: %target-swift-frontend -enable-experimental-string-processing -parse-as-library -emit-sil -verify %s
|
|
|
|
// REQUIRES: libswift,string_processing
|
|
|
|
import _MatchingEngine
|
|
import _StringProcessing
|
|
|
|
func foo() {
|
|
_ = DummyMatchingEngine()
|
|
let _: Regex<(Substring, DynamicCaptures)> = ''
|
|
}
|